Skip to content

inNodeJs

Check if running in Node.js environment.

Usage

js
import { inNodeJs } from 'js-cool'

Signature

typescript
const inNodeJs: boolean

Returns

boolean - true if in Node.js.

Examples

js
if (inNodeJs) {
  console.log('Running in Node.js')
  // Use Node.js APIs
}

Released under the MIT License.