npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ctd

v2.0.3

Published

deploy tool for nodejs app

Downloads

93

Readme

ctd

this project was fork the package of cfork, and rewrite by ts.

we found cfork can not fork different worker by env

cluster fork and restart easy way.

  • Easy fork with worker file path
  • Handle worker restart, even it was exit unexpected.
  • Auto error log process uncaughtException event
  • set envs, worker count is length of envs ,and every worker's env different. if worker was exit because of configFile, will not refork.

Install

$ npm install ctd --save

Usage

Example

// start your nodejs app
ctd start app.js

// stop your nodejs app
ctd stop

Options

options can be an object or a file(config path), you can edit content of your config file and it will work 1 minute later

the file name is .config.json at your app baseDir

  • name: your app name,default your package.json name
  • exec : exec file path
  • args : exec arguments
  • count : fork worker nums, default is os.cpus().length
  • duration: default is 60000, one minute (so, the refork times < limit / duration)
  • env: attach some environment variable key-value pairs to the worker / slave process, default to an empty object.
  • model: default cluster,you can set fork
  • evns: if you want every worker has different env config ,you can set this field, default is [].example, envs:[{name:1},{name:2}]
  • clusterModel:
    • 'both':every worker has same evn config
    • 'each':every worker has different evn config
  • callback: when the worker was exit ,callback will be wake up

Change log

  • 2021.9.7
    • update readme file
    • update error of config env types