![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
h5-cryptum-resources-retriever
Advanced tools
Retrieve and save any variants to your own profile, including Warzone ones
Resources Retriever allows you to retrieve and save any variants to your own profile, including Warzone ones.
ES6:
import ResourcesRetriever from 'h5-cryptum-resources-retriever'
const { MAP_VARIANT, GAME_VARIANT } = ResourcesRetriever.getAllowedFileTypes();
const { PLAYER, SYSTEM } = ResourcesRetriever.getAllowedOwnerTypes();
// Retrieve a map variant from the content-hacs API
// Summit (Warzone Assault)
ResourcesRetriever
.setGamertag('...')
.setSpartanToken('...')
.setFileId('27199f2a47084284a733a2cc223559dc')
.setFileType(MAP_VARIANT)
.setOwnerType(SYSTEM)
.retrieveAndSave((err, result) => console.log(err, result));
// Retrieve a game variant from a player
// No Weapon Start
ResourcesRetriever
.setGamertag('...')
.setSpartanToken('...')
.setFileId('b768f833-878b-4e15-96e3-8e84675b553c')
.setFileType(GAME_VARIANT)
.setOwnerType(PLAYER)
.setOwnerName('X3CXeX v3') // File's owner
.retrieveAndSave((err, result) => console.log(err, result));
ES5:
var ResourcesRetriever = require('h5-cryptum-resources-retriever').default;
var allowedFileTypes = ResourcesRetriever.getAllowedFileTypes();
var allowedOwnerTypes = ResourcesRetriever.getAllowedOwnerTypes();
// Retrieve a map variant from the content-hacs API
// Dispatch (Warzone Assault)
ResourcesRetriever
.setGamertag('...')
.setSpartanToken('...')
.setFileId('026064ad62bc4f30892ab69fa76ed331')
.setFileType(allowedFileTypes.MAP_VARIANT)
.setOwnerType(allowedOwnerTypes.SYSTEM)
.retrieveAndSave(function(err, result) {
return console.log(err, result);
});
// Retrieve a game variant from a player
// Weapons Damage Disabled
ResourcesRetriever
.setGamertag('...')
.setSpartanToken('...')
.setFileId('9b16f28b-f26d-494d-9dac-3378c84bcd01')
.setFileType(allowedFileTypes.GAME_VARIANT)
.setOwnerType(allowedOwnerTypes.PLAYER)
.setOwnerName('X3CXeX v3') // File's owner
.retrieveAndSave(function(err, result) {
return console.log(err, result);
});
Note: Dashes in the File Id are optional.
Right now, the quicker way to retrieve your Spartan Token (Authorization) is to go to the Halo4Stats website. A generator will be released on my GitHub as soon as possible.
Everything you need might be found on the content-hacs API (See: "Identity" key). Also each player's file has its own id and can be located in its sharing URL after the hash key (#). Example: https://...#ugc...66681a69-8096-42c5-8df1-a89b21974cf1.
Feel free to open a pull request on GitHub!
MIT
FAQs
Retrieve and save any variants to your own profile, including Warzone ones
The npm package h5-cryptum-resources-retriever receives a total of 0 weekly downloads. As such, h5-cryptum-resources-retriever popularity was classified as not popular.
We found that h5-cryptum-resources-retriever demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.