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

pm2-env-module

v0.0.6

Published

Module to auto-rename .env file of process

Downloads

7

Readme

PM2 .env module

pm2-env-module aim to ease the configuration of nodejs apps that use the .env files to manage enviroment settings and can't use the pm2 enviroment management.

Install

pm2 install pm2-env-module

To install a specific version use the @<version> suffix

pm2 install [email protected]

How it works

After the installation of this module you can control it like a normal pm2 process:

pm2 start pm2-env-module
pm2 stop pm2-env-module
pm2 restart pm2-env-module
pm2 logs pm2-env-module

Every time it is started, the module will read all the process of the pm2 where is installed and, foreach process it will:

  • if a file <process-script-path>/<config.envRelativePath>/<config.envFilename>.<enviroment-of-process[envVariableName]> exist
  • copy the previous file to <process-script-path>/<config.envRelativePath>/<config.envFilename> overriding if exist

If some error occurs, it will be logged.

NB: the command pm2 start|stop|restart all DOES NOT EFFECT the modules, so keep in mind that you must call pm2 restart pm2-env-module before restarting your process to change the env files.

Configuration

| Configuration | Default | Description | ------------- | ------- | ----------- | envFilename | .env | The file name of the env file | envRelativePath | `` | An optional path to add to the script root path | envVariableName | NODE_ENV | The env variable that contains the name of the enviroment execution | buildEnvFile | false | Generate an env file with the data set on the ecosystem's pm2 file. It will ignore other .env* files | logLevel | info | Set the log level. Values are: fatal, error, warn, info, debug, trace

Change values

After having installed the module you have to type: pm2 set pm2-env-module:<param> <value>

pm2 set pm2-env-module:envFilename configFile
pm2 set pm2-env-module:envRelativePath /config
pm2 set pm2-env-module:envVariableName ENVIROMENT
pm2 set pm2-env-module:buildEnvFile true
pm2 set pm2-env-module:logLevel trace

Todos

  • Test
  • JSDocs
  • Configuration add-on:
    • custom settings per process

License

Copyright Manuel Spigolon, Licensed under MIT.