diff options
Diffstat (limited to 'src/index.ts')
-rw-r--r-- | src/index.ts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..af5095b --- /dev/null +++ b/src/index.ts @@ -0,0 +1,27 @@ +import express from 'express' +import { fetchMemberProfile, fetchUser } from './hypixel' +import { fetchProfile } from './hypixelCached' + +const app = express() + + +app.get('/', async(req, res) => { + res.json({ ok: true }) +}) + +app.get('/player/:user', async(req, res) => { + res.json( + await fetchUser( + { user: req.params.user }, + ['profiles', 'player'] + ) + ) +}) + +app.get('/player/:user/:profile', async(req, res) => { + res.json( + await fetchMemberProfile(req.params.user, req.params.profile) + ) +}) + +app.listen(8080, () => console.log('App started :)'))
\ No newline at end of file |