1.0.1 • Published 2 years ago
kingsley-sdk v1.0.1
KINGSLEY-SDK
Development Setup
npm install -g typescriptClone Github repo
https://github.com/kngashon1/kingsley-sdkRun the SDK (please use git bash)
npm run buildTest SDK creating node project
- Create nodejs Typescript project
- Install sdk package from npm registry
npm i kingsley-sdk - You can consume the package using below code :
import { Library } from 'kingsley-sdk';
const client = new Library({
authToken: 'XGyPMmM2g1XPU46RbLSC',
baseUrl: 'https://the-one-api.dev/v2'
});
client.movies.getMovies().then((res: any) => console.log(`Movies are listed below: ${res?.docs}`) );
client.quotes.getQuotes().then((res: any) => console.log(`Quotes are listed below: ${res?.docs}`) );Options to add in tsconfig.json file
{
"compilerOptions": {
"esModuleInterop": true,
"experimentalDecorators": true
}
}Run local
tsc
node dist/run.js