1.0.0-beta.4 • Published 6 years ago

ndjs v1.0.0-beta.4

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

NDjs

A JavaScript implementation of W3C DOM for Node.js. It supports DOMParser and XMLSerializer interface such as in browser, it can also provide a window with a document for jQuery to work in Node.js.

Installation

Node.js

npm install ndjs

AMD

Follow the instruction of the environments you are using.

How to use

Node.js

var ndjs = require('ndjs');

var html = '<html><body>NDjs</body></html>';
var dom = new ndjs.DOMParser().parseFromString(html);
var window = ndjs.window(dom);

AMD

define(['ndjs'], function(ndjs){
    var html = '<html><body>NDjs</body></html>';
    var dom = new ndjs.DOMParser().parseFromString(html);
    var window = ndjs.window(dom);
});

Authors and Contributors

  • Jianwei Liu

License

NDjs is released under the MIT license.

1.0.0-beta.4

6 years ago

1.0.0-beta.3

6 years ago

1.0.0-beta.2

6 years ago