arxiv

0.0.4 • Public • Published

node-arxiv

Wrapper over the Arxiv API

Install

npm install arxiv

Usage

arxiv = require('arxiv');
 
search_query = {
    title: 'RNN',
    author: 'William Chan'
};
 
arxiv.search(search_query, function(err, results) {
    console.log('Found ' + results.items.length + ' results out of ' + results.total);
    console.log(results.items[0].title);
    console.log(results.items[0].authors[0].name);
});

Readme

Keywords

Package Sidebar

Install

npm i arxiv

Weekly Downloads

2

Version

0.0.4

License

none

Last publish

Collaborators

  • spro