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

https://github.com/co2-git/search123

Node module for the search123 API
https://github.com/co2-git/search123

Last synced: about 1 year ago
JSON representation

Node module for the search123 API

Awesome Lists containing this project

README

          

search123
=========

Node module for the search123 API

# Install

```bash
npm install search123
```

# Usage

```js
var search123 = require('search123');

var options = {};

search123(options)
.then(function (results) {
console.log(results);
},
function (error) {
throw error;
})
```

# Options

A model for the options can be found at `lib/parameters`.