├── .eslintrc.json ├── .gitignore ├── .nodemonrc.json ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── bower.json ├── nodes ├── 99-sample.html.demo └── 99-sample.js.demo ├── package.json ├── public └── index.html ├── settings.js └── src ├── logger_con.js ├── logger_file.js ├── logger_syslog.js └── server.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/.gitignore -------------------------------------------------------------------------------- /.nodemonrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/.nodemonrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/bower.json -------------------------------------------------------------------------------- /nodes/99-sample.html.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/nodes/99-sample.html.demo -------------------------------------------------------------------------------- /nodes/99-sample.js.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/nodes/99-sample.js.demo -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/public/index.html -------------------------------------------------------------------------------- /settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/settings.js -------------------------------------------------------------------------------- /src/logger_con.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/src/logger_con.js -------------------------------------------------------------------------------- /src/logger_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/src/logger_file.js -------------------------------------------------------------------------------- /src/logger_syslog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/src/logger_syslog.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyInformation/node-red-template-embedded/HEAD/src/server.js --------------------------------------------------------------------------------