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

@alessiobonadonna/my-env-generator

v1.1.6

Published

Generate .env files dynamically based on JSON configurations and sample-env templates.

Downloads

502

Readme

my-env-generator

@alessiobonadonna/my-env-generator è un pacchetto che automatizza la generazione di file .env basati su configurazioni JSON e file .sample-env presenti nel tuo progetto.

Come funziona

  1. Il pacchetto legge i file di configurazione JSON nella cartella .environment del progetto.
    • common.json: Configurazioni comuni a tutti gli ambienti.
    • development.json, production.json, ecc.: Configurazioni specifiche per ambiente.
  2. Cerca i file .sample-env nel progetto (sia nella root che nelle sottocartelle).
  3. Sostituisce i placeholder nei .sample-env con i valori dei file di configurazione.
  4. Genera un file .env accanto al rispettivo .sample-env.

Struttura del progetto

Esempio di struttura

root/
├── .environment/          # Configurazioni JSON
│   ├── common.json
│   ├── development.json
│   ├── production.json
├── .sample-env             # File nella root del progetto
├── admin/
│   ├── .sample-env
├── api/
│   ├── .sample-env
└── site/
    ├── .sample-env

Esempio di common.json

{
  "admin": {
    "baseurl": "/admin"
  },
  "api": {
    "baseurl": "/api"
  },
  "project": {
    "name": "MyProject"
  }
}

Esempio di development.json

{
  "admin": {
    "baseurl": "/admin-dev"
  },
  "api": {
    "baseurl": "/api-dev"
  }
}

Esempio di .sample-env

Nella root:

PROJECT_NAME={{project.name}}
ADMIN_URL={{admin.baseurl}}
API_URL={{api.baseurl}}

Nella cartella admin:

ADMIN_BASEURL={{baseurl}}

Output generato (.env)

Nella root:

PROJECT_NAME=MyProject
ADMIN_URL=/admin-dev
API_URL=/api-dev

Nella cartella admin:

ADMIN_BASEURL=/admin-dev

Installazione

  1. Aggiungi il pacchetto al tuo progetto:

    npm install --save-dev @alessiobonadonna/my-env-generator
  2. Aggiungi uno script al package.json del progetto:

    "scripts": {
      "env": "generate-env $1"
    }

Utilizzo

  1. Assicurati di avere la cartella .environment nella root del progetto con i file common.json e i file di configurazione per gli ambienti.

  2. Esegui lo script per generare i file .env:

    npm run env -- development
    npm run env -- production
  3. Verifica che i file .env siano stati generati accanto ai rispettivi .sample-env.


Errori parlanti

Il pacchetto restituisce errori chiari in caso di problemi:

  1. File di configurazione mancante:
    [ERROR] Missing common.json in /path/to/.environment
  2. Cartella o servizio mancante:
    [ERROR] No configuration found for service: admin
  3. Template .sample-env mancante:
    [ERROR] Missing .sample-env file in /path/to/admin

Contributi

Se desideri contribuire al progetto, sentiti libero di aprire issue o pull request.