Socket
Socket
Sign inDemoInstall

exenv

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    exenv

React's ExecutionEnvironment module extracted for use in other packages & components


Version published
Maintainers
1
Install size
4.41 kB
Created

Package description

What is exenv?

The exenv npm package is a utility library for managing environment-specific code in JavaScript applications. It allows developers to write conditional code based on the current execution environment, such as development, test, or production. This can be particularly useful for configuring application behavior without exposing sensitive environment details or for optimizing the application by excluding unnecessary code in production.

What are exenv's main functionalities?

Environment Checking

This feature allows developers to check if the DOM is available in the current environment. It's useful for avoiding errors in non-browser environments like server-side rendering.

if (exenv.canUseDOM) {
  console.log('This code runs only if DOM is available');
}

Development vs Production Code

This feature enables conditional execution of code based on whether the environment is set to 'production' or not. It helps in implementing environment-specific logic such as logging and debugging.

if (exenv.env === 'production') {
  console.log('Running in production mode');
} else {
  console.log('Not running in production mode');
}

Other packages similar to exenv

Readme

Source

exenv

React's ExecutionEnvironment module extracted for use in other packages & components.

Why?

Because a lot of packages and components use React's private ExecutionEnvironment lib to detect the environment, e.g

canUseDOM = require('react/lib/ExecutionEnvironment').canUseDOM;

It is bad practice to use React internals and this is likely to be broken / disabled in the future. Use this package instead.

Usage

npm install exenv --save
var ExecutionEnvironment = require('exenv');

// You now have...
ExecutionEnvironment.canUseDOM             // is the DOM available? i.e window document etc. 
ExecutionEnvironment.canUseWorkers         // are Web Workers available?
ExecutionEnvironment.canUseEventListeners  // are Events available? i.e addEventListener etc.
ExecutionEnvironment.canUseViewport        // is there a viewport? i.e window.screen

Keywords

FAQs

Last updated on 14 Apr 2015

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc