Easily check raid status of Destiny player(s)
Clone the repository:
git clone https://github.com/Mulchman/DestinyRaidStatus.git
Install dependencies:
- Install [NodeJS].
- Run
npm install
- Windows-based developers night need to install
windows-build-tools
(npm install --global windows-build-tools
) globally prior to runningnpm install
.
Check code Style
npm run lint
Build in dev mode (Chrome extension)
npm start
. This will bundle and copy all the assets, as well as watch for changes. You can now run locally by enabling Chrome Extensions Developer Mode and point to thedist
folder.
Get your own API key:
- Goto Bungie
- Open your extension in another tab, copy the url up to
/index.html
. - Paste your extension url into the
Origin Header
section on bungie.net - Create a file named
apiKey.json
in the root of the DRS directory tree that looks like the following (including the curly braces and quotations):{ "apiKey": "paste_here" }
- Copy your API-key from bungie.net into the section where it says
paste_here
. Re-build and you're good to go.
Special thanks to DIM and its awesome developers- the ActionQueue
, Bungie network response switch
ing, webpack
config, and some other misc. bits were borrowed and adapted from DIM.