@mojoactive/lib
v1.6.1
Published
A library for MoJo Active Developers
Keywords
Readme
@mojoactive/lib
A library for MoJo Active Developers
Building and running on localhost
First install dependencies:
npm installTo create a production build:
npm run buildUsing in an application
In order to use this library in an application first install the dependency:
npm install @mojoactive/lib -SThen 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 es6Or through HTML with
<script src="https://unpkg.com/@mojoactive/lib@x/dist/mja.web.js"></script>