0.1.0 • Published 9 years ago

semantics3-node-client v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

Semantics3 api client in nodejs.

Build Status

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