Skip to content

spro/node-arxiv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published