0.0.4 • Published 8 years ago

arxiv v0.0.4

Weekly downloads
60
License
-
Repository
github
Last release
8 years ago

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);
});
0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago