Skip to content
This repository has been archived by the owner on Jan 29, 2021. It is now read-only.

wttech/crex-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Creative Exchange SDK for JavaScript

Version License

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.

SDK Quickstart

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

SDK Documentation

Full documentation can be found here: https://mateuszluczak.github.io/crex-sdk

CLI

Package can also be installed globally as a CLI

$ npm install crex -g
$ ce --help

CLI Documentation

Full documentation can be found here:

  1. For v1: CrEx CLI Documentation v1
  2. For v2: CrEx CLI Documentation v2

License

MIT