0.0.2 • Published 7 years ago

node-sciencedirect v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

node-sciencedirect NPM version Build Status Dependency Status Coverage percentage

A node sdk and client library for sciencedirect api

Installation

$ npm install --save node-sciencedirect

Usage

const nodeSciencedirect = require('node-sciencedirect');

let scienceDirect = new ScienceDirect('<YOUR_API_KEY>');

/* Retrieve the newest 10 articles which contains the word 'software'*/
scienceDirect.search('software', 10, {sort: '-coverDate'}, (err, articles)=>{
    // Work with your retrieved results from sciencedirect
    
});

License

MIT © Haritz Medina