🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

expose-env

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expose-env

A simple package to expose environment variables to NPM script commands

0.1.7
latest
npm
Version published
Weekly downloads
921
160.91%
Maintainers
1
Weekly downloads
 
Created
Source

expose-env

Overview

This is a simple NPM script that aims at providing a simple cross-platform way of exposing environment variables onto NPM script commands.

This packages takes on the idea of cross-var and aims at implementing similar functionality. Why not just use cross-var then? Simply because the package hasn't been maintained in years and is exposed to security vulnerabilities at this point.

Installation

This module is distributed via npm and should be installed as one of your project's devDependencies:

npm install --save-dev expose-env

Usage

Use in your NPM scripts:

{
  "scripts": {
    "build": "expose-env firebase emulators:start --project %FIREBASE_PROJECT_ID%"
  }
}

If the FIREBASE_PROJECT_ID environment variable is set, expose-env will run the following command:

# FIREBASE_PROJECT_ID=xxx
firebase emulators:start --project xxx

Contributing

To install dependencies:

bun install

To run:

bun run index.ts

This project was created using bun init in bun v1.0.26. Bun is a fast all-in-one JavaScript runtime.

Keywords

env

FAQs

Package last updated on 13 Mar 2024

Did you know?

Socket

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.

Install

Related posts