1.0.0 • Published 9 months ago

b9-5-1-testpack v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

INSTALL

To include jQuery in Node, first install with npm.

npm install jquery For jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as jsdom. This can be useful for testing purposes.

const { JSDOM } = require( "jsdom" ); const { window } = new JSDOM( "" ); const $ = require( "jquery" )( window );

1.0.0

9 months ago