[][https://www.npmjs.com/package/nodify-shopify] [][https://travis-ci.org/microapps/Nodify-Shopify] Node connector for the Shopify API. Talk to Shopify API speaking node!
Use Nodify-Shopify to grab all Shopify API resources. It also handles authentication (using the new OAuth2 API) and billing.
var nodify = require('nodify-shopify');
var session = nodify.createPrivateAppSession('your-shop-name', 'your-api-key', 'your-password');
session.orders.all({ limit: 5 }, function (err, orders) {
if (err) throw err;
console.log(orders);
});
var nodify = require('nodify-shopify');
var session = nodify.createSession(shopName, apiKey, secret, persistentOauth2Token);
session.order.all({ limit: 5 }, function (err, orders) {
if (err) throw err;
console.log(orders);
});
You also have a Demo app to get the ball rolling, called Nodify-App. Check that out to get a better understanding of how this module works, notably in case you want to dynamically retrieve the OAuth2 token, or check the tests.
$ npm install nodify-shopify
[request] (https://www.npmjs.org/package/request)
Install dependencies:
$ npm install -d
- [Becoming a Shopify App Developer] (https://app.shopify.com/services/partners/signup?ref=microapps)
- [Checking out the roots] (https://docs.shopify.com/api/introduction/getting-started?ref=microapps)
- [Talking To Other Masters] (https://ecommerce.shopify.com/c/shopify-apps?ref=microapps)
- [Reading API Docs] (https://docs.shopify.com/api?ref=microapps)
- [Learning from others] (http://stackoverflow.com/questions/tagged/shopify)
[Shopify Embedded App Frontent Framework] (http://seaff.microapps.com?utm_source=nodify-module-repo-readme&utm_medium=click&utm_campaign=github)
[Carlos Villuendas] (https://github.com/carlosvillu/)
[Kenrick Beckett] (https://github.com/kenrick/)
[Alexandre Saiz] (https://github.com/alexandresaiz/)
[Florian Traverse] (https://github.com/temsa/)
[Alua Kinzhebayeva] (https://github.com/Alua-Kinzhebayeva)
Supported by microapps