├── .eslintrc ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── cronplus.html ├── cronplus.js ├── examples ├── NYSE Trading.json ├── dashboard schedules.json ├── debug │ └── all-command-test.json ├── dynamic schedules.json ├── fan out.json ├── march sunrise and weekend sunset.json ├── solar events.json └── using dates.json ├── package.json └── test └── test1_spec.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/README.md -------------------------------------------------------------------------------- /cronplus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/cronplus.html -------------------------------------------------------------------------------- /cronplus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/cronplus.js -------------------------------------------------------------------------------- /examples/NYSE Trading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/NYSE Trading.json -------------------------------------------------------------------------------- /examples/dashboard schedules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/dashboard schedules.json -------------------------------------------------------------------------------- /examples/debug/all-command-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/debug/all-command-test.json -------------------------------------------------------------------------------- /examples/dynamic schedules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/dynamic schedules.json -------------------------------------------------------------------------------- /examples/fan out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/fan out.json -------------------------------------------------------------------------------- /examples/march sunrise and weekend sunset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/march sunrise and weekend sunset.json -------------------------------------------------------------------------------- /examples/solar events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/solar events.json -------------------------------------------------------------------------------- /examples/using dates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/examples/using dates.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/package.json -------------------------------------------------------------------------------- /test/test1_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-cron-plus/HEAD/test/test1_spec.js --------------------------------------------------------------------------------