Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/status-im/nim-daemon
Cross-platform process daemonization library for Nim language
https://github.com/status-im/nim-daemon
bsd daemon daemonize fork linux macos unix windows
Last synced: 3 months ago
JSON representation
Cross-platform process daemonization library for Nim language
- Host: GitHub
- URL: https://github.com/status-im/nim-daemon
- Owner: status-im
- License: apache-2.0
- Created: 2018-04-26T05:38:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-08T09:47:14.000Z (almost 6 years ago)
- Last Synced: 2024-05-18T14:33:11.823Z (6 months ago)
- Topics: bsd, daemon, daemonize, fork, linux, macos, unix, windows
- Language: Nim
- Size: 19.5 KB
- Stars: 31
- Watchers: 27
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHEv2
Awesome Lists containing this project
- awesome-nim - daemon - Cross-platform process daemonization library for the Nim language. (Operating System / Processes)
README
# Nim Daemonize
[![Build Status (Travis)](https://img.shields.io/travis/status-im/nim-daemon/master.svg?label=Linux%20/%20macOS "Linux/macOS build status (Travis)")](https://travis-ci.org/status-im/nim-daemon)
[![Windows build status (Appveyor)](https://img.shields.io/appveyor/ci/nimbus/nim-daemon/master.svg?label=Windows "Windows build status (Appveyor)")](https://ci.appveyor.com/project/nimbus/nim-daemon)
[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)## Introduction
This closs-platform library is used to daemonize processes: that is, make them run in the background and independently of the terminal. The library is used to develop Unix daemons and background processes on Windows.
## Installation
```bash
nimble install daemon
```## License
Licensed and distributed under either of
* MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT
or
* Apache License, Version 2.0, ([LICENSE-APACHEv2](LICENSE-APACHEv2) or http://www.apache.org/licenses/LICENSE-2.0)
at your option. This file may not be copied, modified, or distributed except according to those terms.