Backend for skyblock.matdoes.dev.
This is kinda like Slothpixel, it fetches the SkyBlock API and cleans up the result for use without an API key.
If you (this is really just here for myself so I don't forget) are adding a new API thing, follow these rules so the API is consistent with how it responds:
- Use camelCase for keys.
- Use snake_case for values.
- Prefer arrays over dictionaries when the keys aren't static. For example
[ { name: "asdf", value: "dsfasg" } ]
rather than{ "asdf": "dsfasg" }
. - Dates are milliseconds since epoch.
- Fields that contain a snake_case ID should be called
id
. At the moment some of them are calledname
, this will be changed soon.
First, install the dependencies with npm i
.
Then to run it, do npx tsc -w
in one terminal, npx nodemon build
in another. This makes it automatically restart when you make a change.
If you don't like it auto restarting, then just do node build
instead of npx nodemon build
.
It'll be running at http://localhost:8080
Here's some words frequently used in the codebase that might potentially get confused:
- Profile: Sometimes known as a co-op, these contain one or more members.
- Member: Someone who is in a profile.
- Player: An individual account, it can be in multiple profiles and each instance of them in the profile is a different member.