1.0.0 • Published 2 years ago

vitalii-mishchenko-sdk v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Lord of the rings SDK

Install

npm install vitalii-mishchenko-sdk

Usage

The module can be imported and used in your code as:

import { LotrSdk } from 'vitalii-mishchenko-sdk';

const lotrSdk = new LotrSdk('your-api-key');

// Get all books list
const books = lotrSdk.getMoviesList().then((response) => console.log(response));

// Get one specific book
const book = lotrSdk.getMoviesList.get('5cf5805fb53e011a64671582', {
  page: 5,
  limit: 5,
  sort: {
    selector: 'name',
    order: 'asc'
  }
});

/* Supported params:
{
  limit?: number;
  page?: number;
  offset?: number;
  sort?: Sort;
}
*/