dsnet

A simple wrapper for AGH University of Science and Technology Dormitories API.

Usage no npm install needed!

<script type="module">
  import dsnet from 'https://cdn.skypack.dev/dsnet';
</script>

README

DSNET API 🌆

A simple wrapper for AGH University of Science and Technology Dormitories API.

install size

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();

})();