├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── afterinst.sh ├── appbkg.png ├── appdmg.json ├── flows.json ├── flows_cred.json ├── loading.gif ├── main.js ├── makewin32.js ├── makewin64.js ├── nodered.icns ├── nodered.ico ├── nodered.png └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/README.md -------------------------------------------------------------------------------- /afterinst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/afterinst.sh -------------------------------------------------------------------------------- /appbkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/appbkg.png -------------------------------------------------------------------------------- /appdmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/appdmg.json -------------------------------------------------------------------------------- /flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/flows.json -------------------------------------------------------------------------------- /flows_cred.json: -------------------------------------------------------------------------------- 1 | {"$":"7b15c36b8209a9e08997cdea6bd0c71cpNQ="} -------------------------------------------------------------------------------- /loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/loading.gif -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/main.js -------------------------------------------------------------------------------- /makewin32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/makewin32.js -------------------------------------------------------------------------------- /makewin64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/makewin64.js -------------------------------------------------------------------------------- /nodered.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/nodered.icns -------------------------------------------------------------------------------- /nodered.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/nodered.ico -------------------------------------------------------------------------------- /nodered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/nodered.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natcl/electron-node-red/HEAD/package.json --------------------------------------------------------------------------------