
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Necro is a gem for managing processes in development environment.
You need to start by creating a ini
file which will define processes you want to manage using necro. An example
ini
file is included in the repo.
[rails]
directory = /home/gnufied/god_particle
command = zsh -c 'bundle exec rails s -p 5000'
[dj]
directory = /home/gnufied/god_particle
command = zsh -c 'bundle exec ruby script/delayed_job'
[events]
directory = /home/gnufied/god_particle
command = zsh -c 'bundle exec ruby script/event_server'
After that you can start process manager via:
~> necro start necro.ini
Above command will start all your processes in one terminal with their stdout/stderr merged and labelled.
Now additionally you can control individual process by,
# Will try to stop running delayed job by sending SIGINT to the process
~> necro remove dj
# If Process can't be killed by SIGINT send a custom signal
~> necro remove dj -s 9
# add and start running
~> necro add dj
You can also enable OSX notifications for crashed processes by installing terminal-notification
gem. It is not a dependency, but can be useful if something crashed and you weren't paying attention.
FAQs
Unknown package
We found that necro demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.