npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tlotr-sdk

v1.0.9

Published

The lord of the rings API sdk

Downloads

12

Readme

Introduction

This is a software development kit (SDK) for interacting with an API that provides movie data. The SDK offers the following functionalities:

getMovieById: retrieves a specific movie based on movieId. getMovieByName: retrieves a specific movie based on movieName. getMovies: retrieves all movies available. getMovieQuotes: retrieves quotes for a specific movie based on movieId. getMovieQuotesByName: retrieves quotes for a specific movie based on movieName.

Installation

To install this SDK in your project, run the following command: npm install tlotr-sdk

To test the usage of the sdk a script was created, you can run it with: npm start -> in case of error make sure you installed the lotr-sdk before

Running test: npm test

Deploy new version of package: change version in package.json use npm publish

Usage

Importing: import { getMovieById, getMovieByName, getMovies, getMovieQuotes, getMovieQuotesByName } from 'lotr-sdk';

getMovieById(movieId: string, apiUrl: string, sdkKey: string, retries?: number, retryDelay?: number): Promise

Retrieves a specific movie based on movieId. The function returns a Promise which resolves to an object that has the following properties:

success: boolean indicating whether the request was successful or not. data: an object with the retrieved movie data. message: a message describing the outcome of the request.

getMovieByName(movieName: string, apiUrl: string, sdkKey: string, retries?: number, retryDelay?: number): Promise Retrieves a specific movie based on movieName. The function returns a Promise which resolves to an object that has the following properties:

success: boolean indicating whether the request was successful or not. data: an object with the retrieved movie data. message: a message describing the outcome of the request. getMovies(apiUrl: string, sdkKey: string, retries?: number, retryDelay?: number): Promise Retrieves all movies available. The function returns a Promise which resolves to an object that has the following properties:

success: boolean indicating whether the request was successful or not. data: an object with the retrieved movies data. message: a message describing the outcome of the request.

getMovieQuotes(movieId: string, apiUrl: string, sdkKey: string, retries?: number, retryDelay?: number): Promise Retrieves quotes for a specific movie based on movieId. The function returns a Promise which resolves to an object that has the following properties:

success: boolean indicating whether the request was successful or not. data: an object with the retrieved quote data. message: a message describing the outcome of the request.

getMovieQuotesByName(movieName: string, apiUrl: string, sdkKey: string, retries?: number, retryDelay?: number): Promise Retrieves quotes for a specific movie based on movieName. The function returns a Promise which resolves to an object that has the following properties:

success: boolean indicating whether the request was successful or not. data: an object with the retrieved quote data. message: a message describing the outcome of the request. Types This SDK includes the following types:

Types

ApiResponse: describes the shape of the response from the server. SDK_ERRORS: enum containing the possible errors returned by the SDK. MovieSDKResponsePayload: describes the response payload format for methods that retrieve a single movie. MoviesSdkResponsePayload: describes the response payload format for the getMovies method. QuotesSdkResponsePayload: describes the response payload format for methods that retrieve quotes for a movie.

Utils

This SDK includes a utility module named fetchWithRetry.

Dependencies

This SDK depends on the following external libraries and modules:

node-fetch: for making HTTP requests.

ENV variables

The env variable for the sdk was commited just to facilitate testing. Do not do this in production.

TODO

  • Add e2e tests
  • Map possible errors to correct status code
  • Make tests to check API returning correct status code
  • Create variables to store messages
  • Add a better log library
  • Add a monitoring tool
  • Add CI/CD
  • Store sdk key more securely with secrets manager
  • Correctly threat possible API errors responses