You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
greenkeeperio-bot ad9910867a chore(package): update eslint to version 3.9.1 8 years ago
src node => Node.js 8 years ago
test Remove babel 8 years ago
.gitignore Remove babel 8 years ago
.travis.yml Test on multiple node versions 8 years ago
LICENSE Add LICENSE file 8 years ago
README.md Add npm badge 8 years ago
package.json chore(package): update eslint to version 3.9.1 8 years ago

README.md

browser-env Build Status Coverage Status npm

Simulates a global browser environment using jsdom.

Previously named node-browser-environment.

This allows you to run browser modules in Node.js 4 or newer with minimal or no effort. Can also be used to test browser modules with any Node.js test framework. Please note, only the DOM is simulated, if you want to run a module that requires more advanced browser features (like localStorage), you'll need to polyfill that seperately.

Important note

This module adds properties from the jsdom window namespace to the Node.js global namespace. This is explicitly recommended against by jsdom. There may be scenarios where this is ok for your use case but please read through the linked wiki page and make sure you understand the caveats.

Install

npm install --save browser-env

Or if you're just using for testing you'll probably want:

npm install --save-dev browser-env

Usage

// Init
require('browser-env')();

// Now you have access to a browser like environment in Node.js:

typeof window;
// 'object'

typeof document;
// 'object'

var div = document.createElement('div');
// HTMLDivElement

div instanceof HTMLElement
// true

By default everything in the jsdom window namespace is tacked on to the Node.js global namespace (excluding existing Node.js properties e.g console, setTimout). If you want to trim this down you can pass an array of required properties:

// Init
require('browser-env')(['window']);

typeof window;
// 'object'

typeof document;
// 'undefined'

You can also pass a config object straight through to jsdom. This can be done with or without specifying required properties.

require('browser-env')(['window'], { userAgent: 'My User Agent' });

// or

require('browser-env')({ userAgent: 'My User Agent' });

You can of course also assign to a function:

var browserEnv = require('browser-env');
browserEnv();

// or

import browserEnv from 'browser-env';
browserEnv();

License

MIT © Luke Childs