@atechadventurer/cameron-steele-lotr-sdk
v0.0.2
Published
A simple typescript SDK for working with the LOTR API
Readme
The One API SDK
A Hybrid SDK wrapper for TheOne API that targets both browser JS and Nodejs written in Typescript.
Install
Simply add the library to your project via the npm package manager.
npm i --save @atechadventurer/cameron-steele-lotr-sdk
Usage (Node)
const LOTR = require('@atechadventurer/cameron-steele-lotr-sdk');
(async () => {
const lotr = new LOTR({ apiKey: '<YOUR_API_KEY>' });
const movies = await lotr.getMovies({
limit: 3,
sort: "_id:asc"
});
const movie1 = await lotr.getMovie(movies[0]._id);
})()