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

avnt-env-checker

v2.1.3

Published

Um pacote para listar e/ou verificar se todas as variáveis de ambiente usadas em um projeto (local, git ou remoto) estão declaradas em um arquivo de configuração (.env, .json) ou em um objeto diretamente.

Downloads

24

Readme

avnt-env-checker

avnt-env-checker é uma ferramenta para verificar e gerenciar variáveis de ambiente usadas em seu projeto. Ela verifica se todas as variáveis de ambiente estão declaradas em um arquivo de configuração (.env, .json) ou em um objeto diretamente, e também permite listar todas as variáveis de ambiente usadas no projeto. Agora também suporta verificação e listagem de variáveis de ambiente em repositórios Git remotos, incluindo a especificação da branch.

Instalação

Você pode instalar o pacote via npm:

npm install -g avnt-env-checker

Se preferir instalar localmente em seu projeto:

npm install avnt-env-checker

Uso

Usando na Linha de Comando

Após a instalação, você pode usar quatro comandos diferentes:

  1. Para verificar variáveis de ambiente em um projeto local:
avnt-env-checker <path-to-env-file-or-json> <path-to-project-directory>
  1. Para listar todas as variáveis de ambiente usadas em um projeto local:
avnt-env-scan <path-to-project-directory>
  1. Para verificar variáveis de ambiente em um repositório Git remoto:
avnt-env-checker-from-git <repo-url> <env-file-path=.env> <branch=main> <debug-mode=false>
  1. Para listar todas as variáveis de ambiente usadas em um repositório Git remoto:
avnt-env-scan-from-git <repo-url> <branch=main> <debug-mode=false>
  • <path-to-env-file-or-json>: Caminho para um arquivo .env, .json, ou um objeto contendo as variáveis de ambiente.
  • <path-to-project-directory>: Caminho para o diretório raiz do projeto onde a verificação será realizada.
  • <repo-url>: URL do repositório Git remoto.
  • <env-file-path>: Caminho para o arquivo de ambiente no repositório (padrão é .env).
  • <branch>: Nome da branch a ser verificada (padrão é main).
  • <debug-mode>: Ativa o modo de depuração (padrão é false).

Exemplo de Uso no Código

Verificando Variáveis de Ambiente

const { checkEnvVariables } = require('avnt-env-checker');
const path = require('path');

const envFile = path.resolve(__dirname, 'path/to/your/.env');
const projectDir = path.resolve(__dirname, 'path/to/your/project');

checkEnvVariables(envFile, projectDir);

Listando Todas as Variáveis de Ambiente Usadas no Projeto

const { getEnvironments } = require('avnt-env-checker');
const path = require('path');

const projectDir = path.resolve(__dirname, 'path/to/your/project');

const envVars = getEnvironments(projectDir);
console.log('Variáveis de ambiente usadas no projeto:', envVars);

Suporte a Diferentes Tipos de Arquivo

O avnt-env-checker suporta diferentes tipos de arquivo para carregar as variáveis de ambiente:

  • Arquivos .env
  • Arquivos .json
  • Arquivos taskdef.json (usado em configurações de tarefas do AWS ECS)

Implementando no CI .gitlab-ci.yaml

stages:
  - test

variables:
  ENV_FILE: ".env"
  PROJECT_DIR: "$CI_PROJECT_DIR"

check_env_variables:
  stage: test
  image: node:18
  before_script:
    - npm install -g avnt-env-checker
  script:
    - avnt-env-checker $ENV_FILE $PROJECT_DIR

check_env_variables_remote:
  stage: test
  image: node:18
  before_script:
    - npm install -g avnt-env-checker
  script:
    - avnt-env-checker-from-git $CI_REPOSITORY_URL .env $CI_COMMIT_BRANCH false

Funcionalidades

  • Verifica se todas as variáveis de ambiente usadas no projeto estão declaradas.
  • Lista todas as variáveis de ambiente utilizadas no projeto.
  • Suporta múltiplas linguagens de programação (JavaScript, .NET, Flutter).
  • Permite personalização de expressões regulares e extensões de arquivo para busca de variáveis.
  • Modo de depuração para ajudar na resolução de problemas.
  • Suporte para verificação e listagem de variáveis de ambiente em repositórios Git remotos.
  • Permite especificar a branch a ser verificada em repositórios Git remotos.

Dependências

  • dotenv - Para carregar variáveis de ambiente a partir de arquivos .env.

Autor

Anthero Vieira Neto
Email: [email protected]