Lord of the rings SDK
A This is an sdk for lord of the rings movies
Installation
Install rings-sdk with npm or yarn
npm install rings-sdk --save-dev
or
yarn add rings-sdk
Usage/Examples
const sdk = require('rings-sdk')
const { books } = sdk;
await books.run();
- If you want to limit your request you can chain the limit function
await books.limit(100).run();
- For request that require API key
const sdk = require('rings-sdk')
const { chapters } = sdk;
chapters.init(apikey);
await chapters.run();
Running Tests
To run tests, run the following command
npm run test