0.0.4 • Published 8 years ago

web-core v0.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

web-core

Modular standard library for JavaScript WebAPIs. Includes polyfills for Fetch API, Document.elementsFromPoint(), Window.getComputedStyle(), Element.matches(), XPath and more. You can require only needed features or use it without global namespace pollution.

Example:

fetch('https://github.com');    // => Response

Without global namespace pollution:

import web from 'web-js/library';
web.fetch('https://github.com') // => Response

Usage

Basic

 $ npm i -s web-js
// Default
import 'web-js';
// Without global namespace pollution
import web from 'web-js/library';

Partial

import 'web-js/fetch';
// or
import fetch from 'web-js/library/fetch';

Credit