All Projects → flexdinesh → browser-or-node

flexdinesh / browser-or-node

Licence: MIT license
Check where your code is running. In the browser or in node.js environment.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
typescript
32286 projects

Browser or Node.js

Build Status npm version License: MIT

Check whether the code is running in the browser or node.js runtime.

Install

$ npm install --save browser-or-node

Usage

ES6 style import

import { isBrowser, isNode, isWebWorker, isJsDom, isDeno } from "browser-or-node";

if (isBrowser) {
  // do browser only stuff
}

if (isNode) {
  // do node.js only stuff
}

if (isWebWorker) {
  // do web worker only stuff
}

if (isJsDom) {
  // do jsdom only stuff
}

if (isDeno) {
  // do deno only stuff
}

ES5 style import

var jsEnv = require("browser-or-node");

if (jsEnv.isBrowser) {
  // do browser only stuff
}

if (jsEnv.isNode) {
  // do node.js only stuff
}

if (jsEnv.isWebWorker) {
  // do web worker only stuff
}

if (jsEnv.isJsDom) {
  // do jsdom only stuff
}

if (jsEnv.isDeno) {
  // do deno only stuff
}

License

MIT © Dineshkumar Pandiyan

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].