node-newegg-api

0.0.1 • Public • Published

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.

Example code showing all current functions:

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) {
 
});

Readme

Keywords

Package Sidebar

Install

npm i node-newegg-api

Weekly Downloads

2

Version

0.0.1

License

ISC

Last publish

Collaborators

  • euank