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.
 
Luke Childs 1574b68123 Add env to package.json keywords 8 years ago
src Update the way we get properties to work with latest jsdom 9 years ago
test Add tests for unordered args 9 years ago
.gitignore .gitignore npm-debug.log 9 years ago
.npmignore Add babel 9 years ago
.travis.yml Don't send email on success 8 years ago
README.md Recommend --save-dev for installation 8 years ago
package.json Add env to package.json keywords 8 years ago

README.md

browser-env Build Status Coverage Status

Simulates a global browser environment using jsdom.

Previously named node-browser-environment.

This allows you to run browser modules in node with minimal or no effort. Can also be used to test browser modules with any node 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.

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:

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 global namespace (excluding existing node 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