Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdehaan/kickstarter-search
Search Kickstarter by keyword using Node.js
https://github.com/pdehaan/kickstarter-search
Last synced: 15 days ago
JSON representation
Search Kickstarter by keyword using Node.js
- Host: GitHub
- URL: https://github.com/pdehaan/kickstarter-search
- Owner: pdehaan
- License: unlicense
- Created: 2014-11-01T01:47:52.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-01T18:10:40.000Z (about 10 years ago)
- Last Synced: 2024-10-31T13:13:35.757Z (2 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kickstarter-search
Search Kickstarter by keyword using Node.js
## How do I even?
You can install the `kickstarter-search` module using npm using the following command:
```sh
$ npm install pdehaan/kickstarter-search --save
```To use the module, simply require `kickstarter-search` and call the `search()` method:
```js
'use strict';var kickstarter = require('kickstarter-search');
kickstarter.search('jquery').then(console.log, console.error);
```The `kickstarter-search` module cURLs the data from `kickstarter.com/projects/search.json?term={{term}}` and returns the results as JSON (using promises).