fast-io
v1.0.0
Published
A TS wrapper around the Fast.io API
Downloads
3
Maintainers
Readme
Fast.io JavaScript SDK
A TS wrapper around the Fast.io API
Installation
npm i fast
Usage
// Import the lib
import FastIO from 'fast';
// Create a new session
const fast = new FastIO();
// Authenticate future requests
await fast.authenticate('<token>');
// Retrieve user info from the API
const info = await fast.user.getInfo();
// Log the JSON results to the console
console.log('your user info:', info);