From e3908913295e33104fe5dcf3c40ff3ff616d1c18 Mon Sep 17 00:00:00 2001 From: Blake Joynes Date: Sat, 15 May 2021 13:58:02 -0400 Subject: [PATCH] updated readme --- README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8f08028..8dfc2e5 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,25 @@ Typescript library wrapper of [TMDB API](https://developers.themoviedb.org/) v3 This uses new jwt authentication token for requests so there is no need to append api key to the url. Once you have registered for access to the api you can use your access token as follows: -`import TMDB from 'tmdb-ts';` +Installation: +`` +npm install --save tmdb-ts +`` + +```js +import TMDB from 'tmdb-ts'; + +const tmdb = new TMDB('accessToken'); + +try { + const movies = await tmdb.search.movies({ query: 'American Pie' }); + console.log(movies); +} catch(err) { + // handle error +} +``` -`const tmdb = new TMDB(accessToken);` -`tmdb.search.movies({query: 'American Pie'})`