https://github.com/euank/node-newegg-api
A newegg api wrapper in nodejs
https://github.com/euank/node-newegg-api
Last synced: 10 months ago
JSON representation
A newegg api wrapper in nodejs
- Host: GitHub
- URL: https://github.com/euank/node-newegg-api
- Owner: euank
- License: isc
- Created: 2014-06-23T19:38:35.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-23T19:48:03.000Z (almost 12 years ago)
- Last Synced: 2025-05-23T22:18:06.153Z (about 1 year ago)
- Language: JavaScript
- Size: 137 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-newegg-api
===============
A newegg api wrapper in nodejs
Right now it's neither tested nor documented. Those are both major TODOs.
The search api is also TODO.
This code was heavily helped by [this blog
post](http://www.bemasher.net/neweggs-json-quasi-api/).
Example code showing all current functions:
```javascript
var newegg = require('node-newegg-api');
newegg.getProduct("N82E16811219038", function(err, data) {
});
newegg.getMenus(function(err, data) {
});
var storeId = 1;
newegg.getCategory(storeId, function(err, data) {
});
var categoryId = 1;
var nodeId = 1;
newegg.getNavigation(storeId, categoryId, nodeId, function(err, data) {
});
```