0.0.1 • Published 11 years ago

nw-context v0.0.1

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

nw-context

Store browser document and window objects in a module for later retrieval from node-webkit modules running in the node context.

Set up in the browser:

var context = require('nw-context');
context.set({
	window: window,
	document: document
});

Then from within other modules:

var window = require('nw-context').window,
	document = require('nw-context').document;