README
DSNET API 🌆
A simple wrapper for AGH University of Science and Technology Dormitories API.
Highlights
- Well documented (unlike the DSNET API itself - yeah, I'm lookin' at ya DSNET.)
- Easy to use, asynchronous API
- Full API coverage
- Super lightweight
- Written and typed in TypeScript
Install
$ npm install dsnet
Usage
import DSNET from 'dsnet';
const api = new DSNET('OAUTH2_TOKEN');
(async () => {
const userInfo = await api.getUserInfo();
})();