Skip to content

Example showing how to write custom Node-red nodes using ES6+

License

Notifications You must be signed in to change notification settings

AllanOricil/node-red-node-es-template

Repository files navigation

Custom Node-red Node ES Template

custom-nodes

Directory Structure

node-red-node-es-template/
├── assets/
│   ├── icons/
│   │   └── icon.png
│   └── locales/
│       ├── de/
│       │   ├── index.hmtl
│       │   └── index.json
│       └── en-US/
│           ├── index.html
│           └── index.json
├── dist/
│   ├── icons/
│   │   └── icon.png
│   ├── locales/
│   │   ├── de/
│   │   │   ├── index.hmtl
│   │   │   └── index.json
│   │   └── en-US/
│   │       ├── index.html
│   │       └── index.json
│   ├── index.html
│   ├── index.js
│   └── index.js.map
├── src/
│   ├── nodes/
│   │   ├── node-1/
│   │   │   ├── index.js
│   │   │   └── index.html
│   │   └── node-2/
│   │       ├── index.js
│   │       └── index.html
│   └── index.js
├── package.json
└── package-lock.json

About

Example showing how to write custom Node-red nodes using ES6+

Topics

Resources

License

Stars

Watchers

Forks