An open API service indexing awesome lists of open source software.

https://github.com/switz/archive.org

npm module for the archive.org api
https://github.com/switz/archive.org

Last synced: about 1 year ago
JSON representation

npm module for the archive.org api

Awesome Lists containing this project

README

          

archive.org
========

npm module for the subsonic api

[![build status](https://secure.travis-ci.org/switz/archive.org.png)](http://travis-ci.org/switz/archive.org)

### Install

```
$ npm install archive.org --save
```

### Docs
[Documentation](http://saewitz.com/archive.org/doc/classes/Archive.html)

### Example

```javascript
var archive = require('archive.org');

archive.search({q: 'Grateful Dead'}, function(err, res) {
console.log(res);
});
```