node-woocommerce
Connects NodeJS to the glorious world of the WooCommerce API
Important v2.0 Changes
To keep this plugin as up to date as possible v2 requires node v4+. To take advantage of the new features of node the module now utilises ES6 code.
To allow for some automation surrounding the authentication it is now required to pass the url's protocol (http/https). This allows the module to automatically choose from basic auth or OAuth when sending requests. This can be forced by using the ssl
option.
Use of promises are now available, legacy support for callbacks is still included. To use node-woocommerce
with promises you can do the following:
wooCommerce ;
Installation
To install the module using NPM:
npm install woocommerce --save
Setup
You will need a consumer key and consumer secret to call your store's WooCommerce API. You can find instructions here
Include the 'woocommerce' module within your script and instantiate it with a config:
var WooCommerce = ; var wooCommerce = url: 'http://mystore.com' ssl: true consumerKey: 'ck_123456789abcd' secret: 'cs_abcdefg12345';
Instantiating a WooCommerce instace without a url, consumerKey or secret will result in an error being thrown
Options
When instantiating the WooCommerce object you have a choice of the following configuration options:
option | type | required | description |
---|---|---|---|
url | string | yes | The url of your store including the protocol: http://mystore.com, https://securestore.com |
consumerKey | string | yes | The consumer key generated in the store admin |
secret | string | yes | The consumer secret generated in the store admin |
ssl | boolean | no | (default: based on protocol, https = true, http = false) this is automatically set by default, but can be forced by setting the ssl option |
logLevel | number | no | (default: 0) 0 shows errors only, 1 shows info and errors for debugging |
apiPath | string | no | (default: '/wc-api/v2') The path to your API, it should contain a leading slash and no trailing slash |
Calling the API
Your WooCommerce API can be called once the WooCommerce object has been instantiated (see above).
GET
Assuming you have already instantiated.
wooCommerce;
POST
Assuming you have already instantiated and for this example you have a coupon object.
wooCommerce;
PUT
Assuming you have already instantiated.
var couponUpdate = amount: 5; wooCommerce;
DELETE
Assuming you have already instantiated.
wooCommerce;
Testing
npm test
Contributing
This module was originally written to be used with Receiptful and is used in a production environment currently. This will ensure that this module is well maintained, bug free and as up to date as possible.
Receiptful's developers will continue to make updates as often as required to have a consistently bug free platform, but we are happy to review any feature requests or issues and are accepting constructive pull requests.