Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
tmdb-client
Advanced tools
the movie database api for client
module compative with the movie database api version 3
the movie database api version 3 document tmdb-api-v3
using for synchronous the movie database with other database. so almost api has removed because it not neccessary
# use node package manager
npm install tmdb-client
var TmdbClient = require('tmdb-client');
// using default api
var tmdbClient = new TmdbClient();
// using custom api
// using when
// - tmdb change api url, not change api params and response
// - you want to use your api key
var api = {
host: <string>, // url to endpoint api
key: <string>, // api key
path: <object> // object contain pair key: value, it is relative path to api
};
var tmdbClient = new TmdbClient(api);
var selector = {
pageIndex: <number> // index of page [1, 1000]
};
tmdbClient.findMovie(selector, function(error, items) {});
var id = <number>;
tmdb.findMovieById(id, function(error, item) {});
// first item is selector and not suport now
tmdb.movieSize({}, function(error, size) {});
var selector = {
pageIndex: <number> // index of page [1, 1000]
};
tmdbClient.findTv(selector, function(error, items) {});
var id = <number>;
tmdb.findTvById(id, function(error, item) {});
// first item is selector and not suport now
tmdb.tvSize({}, function(error, size) {});
// next day comming with
Tmdb.findTvSeason(tvId, function(error, items) {});
Tmdb.findTvEpisode(seasonId, function(error, items) {});
# clone form revision system control
# require ssh-key, please contact with owner to get one
git clone git@github.com:thelordofthetimes/tmdb-client.git
cd tmdb-client
# install dependency module
npm install
# run test
npm test
# write code and more..
# update revision system control
git add .
git commit -am '<message>'
git push
FAQs
the movie database api for client
The npm package tmdb-client receives a total of 1 weekly downloads. As such, tmdb-client popularity was classified as not popular.
We found that tmdb-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.