1.0.0 • Published 2 years ago

rings-sdk v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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