Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khaliqgant/node-yipit
Node.js module for interacting with Yipits API
https://github.com/khaliqgant/node-yipit
Last synced: 19 days ago
JSON representation
Node.js module for interacting with Yipits API
- Host: GitHub
- URL: https://github.com/khaliqgant/node-yipit
- Owner: khaliqgant
- License: mit
- Created: 2013-01-14T22:15:35.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-03-08T03:17:00.000Z (almost 9 years ago)
- Last Synced: 2024-04-26T02:43:49.169Z (9 months ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![NPM](https://nodei.co/npm/yipit.png)](https://nodei.co/npm/yipit/)
# Yipit V1 API
This hopefully makes it a little bit easier to call Yipit's V1 API
# Install #
# Example #
```js
var yipit = require("yipit");var params = {
"key": YOUR_API_KEY_THIS_IS_REQUIRED
"division": "new-york".
"tag": "restaurants";
};yipit.deals(params, function (error, deals){
if (!error){
console.log(deals);
}
});```
# References #
- [Request API Key](http://yipit.com/about/api/)
- [API Documentation](http://yipit.com/about/api/documentation/)
- [HTTPRequest Documentation](https://github.com/keverw/HTTPRequest)**Hope you enjoy! Email me at [email protected] for any questions or bugs