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
- Host: GitHub
- URL: https://github.com/co2-git/search123
- Owner: co2-git
- Created: 2014-08-14T15:09:04.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-15T00:11:38.000Z (almost 12 years ago)
- Last Synced: 2025-03-01T22:45:38.539Z (over 1 year ago)
- Language: JavaScript
- Size: 348 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.