Skip to content

Add New Component

jollen edited this page Aug 2, 2016 · 4 revisions

How to add a new component to flowchain.

  1. Publish your component to npm.

  2. Update package.json by npm install <your-package> --save.

  3. Open lib/main.js file.

  4. Require your component.

var components =[
  ...
  require('io.flowchain.console')
];
  1. Send a PR to this repo.

Clone this wiki locally