semantics3-node-client
v0.1.0
Published
Semantics3 api client in nodejs
Downloads
1
Readme
Semantics3 api client in nodejs.
Installation
npm install semantics3-node-client
Examples
var Semantics3 = require('semantics3-node-client');
var client = new Semantics3("YOUR_API_KEY", "YOUR_API_SECRET");
var params = {
"search": "Samsung Galaxy"
};
client.query("products", params, function(err, result) {
if (err) {
console.error(err);
} else {
console.log(result);
}
});