Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

arxiv

spro430.0.4

Wrapper over the Arxiv API

arxiv

readme

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