UNPKG

rebootify

Version:

A Faster and lightweight alertnative to nodemon to monitor your Node Application

17 lines (16 loc) 488 B
module.exports = { JS_EXT: '.js', // Default JavaScript file extension DEFAULT_WATCH_PATHS: ['/**/*.js'], // Files to watch IGNORED_PATHS: '**/node_modules/*', // Ignore node_modules REBOOTIFY_VERSION: '1.0.0', // Version of Rebootify LOG_LEVELS: { INFO: 'info', DEBUG: 'debug', ERROR: 'error' }, SIGNALS: { TERMINATE: 'SIGTERM', INTERRUPT: 'SIGINT' }, DEBOUNCE_DELAY: 500, // Delay for file change debounce };