Socket
Socket
Sign inDemoInstall

browser-or-node

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    browser-or-node

Check where the code is running in the browser or node.js


Version published
Maintainers
1
Install size
6.65 kB
Created

Readme

Source

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

Keywords

FAQs

Last updated on 01 Dec 2022

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