https://github.com/spro/node-arxiv
https://github.com/spro/node-arxiv
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/spro/node-arxiv
- Owner: spro
- Created: 2016-09-28T00:00:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-29T08:47:08.000Z (over 9 years ago)
- Last Synced: 2026-01-18T17:54:09.127Z (5 months ago)
- Language: CoffeeScript
- Size: 6.84 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-arxiv
Wrapper over the [Arxiv API](http://arxiv.org/help/api/index)
## Install
```
npm install arxiv
```
## Usage
```js
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);
});
```