Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.
/ overwire Public archive

A library for loading dependencies over the wire

License

Notifications You must be signed in to change notification settings

pyrolabs/overwire

Repository files navigation

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) }) ```

Releases

No releases published

Packages

No packages published