3.7.0 • Published 1 year ago

std-env v3.7.0

Weekly downloads
920,523
License
MIT
Repository
github
Last release
1 year ago

std-env

npm npm bundlephobia

Runtime agnostic JS utils

Installation

# Using npm
npm i std-env

# Using pnpm
pnpm i std-env

# Using yarn
yarn add std-env

Usage

// ESM
import { env, isDevelopment, isProduction } from "std-env";

// CommonJS
const { env, isDevelopment, isProduction } = require("std-env");

Flags

  • hasTTY
  • hasWindow
  • isDebug
  • isDevelopment
  • isLinux
  • isMacOS
  • isMinimal
  • isProduction
  • isTest
  • isWindows
  • platform
  • isColorSupported
  • nodeVersion
  • nodeMajorVersion

You can read more about how each flag works from ./src/flags.ts.

Provider Detection

std-env can automatically detect the current runtime provider based on environment variables.

You can use isCI and platform exports to detect it:

import { isCI, provider, providerInfo } from "std-env";

console.log({
  isCI, // true
  provider, // "github_actions"
  providerInfo, // { name: "github_actions", isCI: true }
});

List of well known providers can be found from ./src/providers.ts.

Runtime Detection

std-env can automatically detect the current JavaScript runtime based on global variables, following the WinterCG Runtime Keys proposal:

import { runtime, runtimeInfo } from "std-env";

// "" | "node" | "deno" | "bun" | "workerd" | "lagon" ...
console.log(runtime);

// { name: "node" }
console.log(runtimeInfo);

You can also use individual named exports for each runtime detection:

!NOTE When running code in Bun and Deno with Node.js compatibility mode, isNode flag will be also true, indicating running in a Node.js compatible runtime.

Use runtime === "node" if you need strict check for Node.js runtime.

  • isNode
  • isBun
  • isDeno
  • isNetlify
  • isEdgeLight
  • isWorkerd
  • isLagon
  • isFastly

List of well known providers can be found from ./src/runtimes.ts.

Platform-Agnostic env

std-env provides a lightweight proxy to access environment variables in a platform agnostic way.

import { env } from "std-env";

Platform-Agnostic process

std-env provides a lightweight proxy to access process object in a platform agnostic way.

import { process } from "std-env";

License

MIT

@jerryhorak/docusaurus-corenuxt-compactnuxt2@danifoldi/nitropack@everything-registry/sub-chunk-2824taman-baca-masyarakatsvelvet-customwith-defer-esvue-kiwiwebdesa-laravel-final-releasexhypertemp-webpackbarstrapi-jsvssrvite-plugin-public-typescriptvite-plugin-faviconsvitest@d2js/cli@d2js/config@d2js/webpack@coobaha/typed-fastify@dachico/timescript@design-token/logger@dovca/nuxt-cli@dovca/nuxt-config@dovca/nuxt-webpackis-in-editorip-designjsx-emailkysely-migratekysely-ctl@ourongxing/nitro@ourongxing/nitropacktehmusimhujantuji-nuxt-clituji-nuxt-coretingzi-vuepresstrigger.devunjs-rekitunkit@bageldb/bagel-db@axxy/nuxt@bigcommerce/catalyst-client@bigcommerce/create-catalyst@breadc/logger@brillout/vitest@chronus/chronus@clerk/shared@1la/jsx-email@aabelmann/ui-layer@codingdud/coolicons@born3am/eslint-config@danizean/cyberzoneyuki-test-cliyuki-test-configyuki-test-webpackzona-xzotero-plugin-scaffoldvue-recaptcha-with-lang-supportvue-recaptcha.netvue-recaptchawebpackbarunplugin-sheet-i18nunplugin-notifierziro@dword-design/maintenance@dtwo/config@dtwo/config-edge@dtwo/schema@dtwo/schema-edge@dtwo/telemetry@dtwo/webpack@dtwo/webpack-edge@graphql-inspector/logger@hebilicious/nitro@hebilicious/unstable-nitro@happyboy2022/nuxt-pwa@hazelapp/sdk@hixt/nitro@hixt/schema@eki-group/svelvet@ethercorps/sveltekit-og@innei/pretty-logger-core@innei/pretty-logger-nestjs@infinitebrahmanuniverse/nolb-std@laystack/quad-tree@lorenzobloedow/vitest@lumavate/nuxt-edge@nguyen-thanh-tung/minisearch-synonyms@nibbs66/buttons-pkg@nader3456/zigbee2mqtt-frontend@nitrolux/cli@namesmt/hono-adapter-aws-lambda@namesmt/utils-lambda@nargarath/vue-recaptcha@escral/nuxt-pwa@minko-fe/vite-config@mikebellika/nitropack@modern-js/app-tools@itsridhopratama/taman-baca-masyarakat
3.7.0

1 year ago

3.6.0

2 years ago

3.5.0

2 years ago

3.4.0

2 years ago

3.4.3

2 years ago

3.4.2

2 years ago

3.4.1

2 years ago

3.3.3

2 years ago

3.3.2

2 years ago

3.3.1

3 years ago

3.3.0

3 years ago

3.2.1

3 years ago

3.1.1

3 years ago

3.1.0

3 years ago

3.0.1

4 years ago

3.0.0

4 years ago

3.0.0-0

4 years ago

2.3.1

4 years ago

2.3.0

4 years ago

3.0.0-alpha

5 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.1

7 years ago

2.1.0

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago