Skip to content

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

License

Notifications You must be signed in to change notification settings

dan1wang/browser-or-node

 
 

Repository files navigation

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 } from 'browser-or-node';

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

if (isNode) {
  // do node.js 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
}

License

MIT © Dineshkumar Pandiyan

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%