A library for MoJo Active Developers
npm install @mojoactive/libsh
npm install
`
To create a production build:
`sh
npm run build
`
Using in an application
In order to use this library in an application first install the dependency:
`sh
npm install @mojoactive/lib -S
`
Then you can either require the mja.web.js file or require the module manually:
`node
import mja from "@mojoactive/lib"; // with es6
const mja = require("@mojoactive/lib"); // without es6
`
Or through HTML with
`html
``