Skip to content
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.

Latest commit

 

History

History
63 lines (48 loc) · 1.43 KB

readme.md

File metadata and controls

63 lines (48 loc) · 1.43 KB

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