marvel-api
marvel-api copied to clipboard
Node.js wrapper for working with the official Marvel Comics API
headers
Hi whats the best way to add additional headers to the request? My problem is that on my local URL (localhost:3000) isn't permitting the request. In my marvel account i've...
marvel-api has no vulnerabilities, which is awesome! This PR adds a badge that shows you’re free of known vulnerabilities. Note that the badge works off the latest master branch. Adding...
In this example : ``` javascript marvel.characters.findAll(function(err, results) { if (err) { return console.error(err); } console.log(results); }); ``` The first parameter is not the error. It's the result.