Creative Exchange SDK simplifies automation of Creative Exchange development workflow. It works both in Nodejs and in the browser, so it can be foundation for command line tools, electron apps, code editor plugins, browser monitoring tools and any other solutions that will make theme development easier for your organisation.
$ npm install crex --save
Use with Node or module bundler like Webpack
var CrEx = require('crex');
var crex = new CrEx();
crex.getPackageList()
.then((packages) => console.log(packages))
.catch((err) => console.log(err));
Full documentation can be found here: https://mateuszluczak.github.io/crex-sdk
Package can also be installed globally as a CLI
$ npm install crex -g
$ ce --help
Full documentation can be found here:
MIT