@mojoactive/lib-semver-test
v1.0.6
Published
Test
Downloads
1
Keywords
Readme
@mojoactive/lib
A library for MoJo Active Developers
Building and running on localhost
First install dependencies:
npm install
To create a production build:
npm run build
Using in an application
In order to use this library in an application first install the dependency:
npm install @mojoactive/lib -S
Then you can either require the mja.web.js
file or require the module manually:
import mja from "@mojoactive/lib"; // with es6
const mja = require("@mojoactive/lib"); // without es6
Or through HTML with
<script src="https://unpkg.com/@mojoactive/lib@x/dist/mja.web.js"></script>