Hello World

This commit is contained in:
Wise Colt
2019-01-01 00:44:39 +03:00
commit 19be7e4c50
5 changed files with 158 additions and 0 deletions

13
example/getinfo.js Normal file
View File

@@ -0,0 +1,13 @@
const GetFlix = require('../index');
const getflix = new GetFlix({tmdbApiKey : 'f29e56ff85f361ff01b5c5403a343021'});
getflix.getInfo('70143836', (err, res)=>{
if(err){
console.log(err);
}
else{
console.log(res);
}
})