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

iddan/web-core

Repository files navigation

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

Releases

No releases published

Packages

No packages published