SkillAgentSearch skills...

Browserjs

An implementation of browser JavaScript APIs for securable modules / ServerJS compatible environments, such as Narwhal

Install / Use

/learn @280north/Browserjs
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

browserjs

BrowserJS is a CommonJS package that emulates portions of the browser JavaScript APIs.

Supported APIs

  • XMLHttpRequest
  • setTimeout, setInterval, clearTimeout, clearInterval
  • console.log, error, warn, debug
  • DOMParser and basic DOM operations (Rhino only)

Usage

To get access to individual APIs, require the corresponding module. For example, if you just w

var XMLHttpRequest = require("browser/xhr").XMLHttpRequest;

To get the "window" object, which contains all the APIs, require the "browser/window" module:

var window = require("browser/window");

Use the properties of the window object directly:

var request = new window.XMLHttpRequest();

Or you can bring all the properties of the "window" object into scope temporarily (without modifying the global scope) by using a with statement:

with (window) {
    var request = new XMLHttpRequest();
}

If you want to permanently modify the global scope to include all the properties of "window" in the global scope, simply require the "browser" module:

require("browser")

Related Skills

View on GitHub
GitHub Stars14
CategoryDevelopment
Updated8y ago
Forks9

Languages

JavaScript

Security Score

60/100

Audited on Dec 21, 2017

No findings