Skip to content

pirsquare/semantics3-node-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Semantics3 api client in nodejs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published