Skip to content

Latest commit

 

History

History
83 lines (52 loc) · 1.73 KB

README.md

File metadata and controls

83 lines (52 loc) · 1.73 KB

node-red-contrib-uimaker

Note: No package is not published to npm yet. Consider this package not ready.

What is it ?

UIMaker allow you to create dashboard with node-red. However, UIMaker does not come with any UI toolkit, it's up to you to use whatever you want. Also, the client library is framework-agnostic, you can use any frontend you want or no framework at all.

This is the repostory for uimaker for Node-RED. It's composed of two packages:

Demo

Click on the image for better quality

Documentation

What's missing ?

  • Tests
  • Generate TS definition
  • Generate a documention with TypeDoc
  • ???

Contributing

Installation

Nodes (Server side)

  1. Install the dependencies for the nodes

in nodes directory:

yarn install
  1. Start the compilation then watch for change
yarn build:watch

In a new terminal you can run the built-in node-red for easier debugging:

cd .node-red
yarn install
yarn node-red

Client side

  1. Install the dependencies for the client library

in client directory:

yarn install
  1. Start rollup in watch mode for the client library

in client directory:

yarn build:watch