# daemonic **Repository Path**: mirrors_chjj/daemonic ## Basic Information - **Project Name**: daemonic - **Description**: A dead-simple module to daemonize a node. No compilation required. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # daemonic Daemonizer for node.js. ## Usage ``` js // Daemonize process based on args. require('daemonic')({ daemon: ['-d', '--daemonic'] }); // Daemonize process based on args (with extra node flags). // Will exec new process to load node flags otherwise. require('daemonic')({ flags: ['--experimental-worker'], daemon: ['-d', '--daemonic'] }); // Always daemonize process (with extra node flags). require('daemonic')({ flags: ['--experimental-worker'], daemon: true }); ``` ## Contribution and License Agreement If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. `` ## License - Copyright (c) 2012-2019, Christopher Jeffrey (MIT License). See LICENSE for more info.