Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Latest commit

 

History

History
46 lines (37 loc) · 1.86 KB

README.md

File metadata and controls

46 lines (37 loc) · 1.86 KB

Overwire

NPM version Build Status Dependency Status Code Climate License Code Style

Library for loading scripts and dependencies over the wire (network)

Getting Started

overwire is universal, so it can be used client-side or server-side.

  1. Install through: npm install --save overwire

  2. Include and use overwire:

import { load } from 'overwire'; load([ 'some/script/path' ]) // load scripts over the wire .then(() => { console.log('scripts loaded successfully!') }) .catch((err) => { console.error('error loading scripts:', err) }) ```