文件名称:node-isbn:一个简单的node.js模块,该模块使用Google Books API通过ISBN查找图书
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-25 15:13:29
JavaScript
结点 一个简单的node.js模块,它使用多种服务按ISBN解析书籍: 使用环境变量ISBNDB_API_KEY中的API密钥的 安装 $ npm install node-isbn 支持Node.js 6.x及更高版本。 例子 使用回调 var isbn = require ( 'node-isbn' ) ; isbn . resolve ( '0735619670' , function ( err , book ) { if ( err ) { console . log ( 'Book not found' , err ) ; } else { console . log ( 'Book found %j' , book ) ; } } ) ; 设置超时 var isbn = require ( 'node-isbn' )
【文件预览】:
node-isbn-master
----examples()
--------example.js(311B)
----test()
--------spec.js(22KB)
----README.md(4KB)
----.gitignore(41B)
----index.js(10KB)
----package.json(611B)