
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
sharelib-tmdbv3
Advanced tools
[request] (https://github.com/mikeal/request)
[mocha] (https://github.com/visionmedia/mocha)
[should] (https://github.com/visionmedia/should.js)
Install from NPM with:
npm install tmdbv3
Then,
var tmdb = require('tmdbv3').init(key);
tmdb.misc.latest(function(err,res) {
console.log(res.title);
});
tmdb.movie.info(5, function(err,res) {
console.log(res.title);
});
tmdb.person.info(109, function(err,res) {
console.log(res.name);
});
etc.
All methods live right now (2012-08-08) implemented.
Testing is done by mocha.
See TMDb v3 page about the api
No language support because I don't use it personally, can be added on request or better yet: add it yourself and make a pull request. :)
For TMDb's old v2.1 api, go to [kkarikos repo] (https://raw.github.com/kkarikos/tmdb).
kkariko: I used part of your request code here, contact me if you have questions, I can't find a way to contact you.
FAQs
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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.