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
Install dependencies:
$ npm install -d
- Becoming a Shopify App Developer
- Checking out the roots
- Talking To Other Masters
- Reading API Docs
- Learning from others
Shopify Embedded App Frontent Framework
- [Aakash Goel](Aakash Goel)
- Alexandre Saiz Verdaguer
- Alua Kinzhebayeva
- Carlos Villuendas Zambrana
- Florian Traverse
- Kenrick Beckett
- Khang Hoang Trieu
- Luigi Pinca
- Will Laurance
Supported by microapps