Introduction
What is Mei.js?
Mei.js is a small library designed to develop common tasks in a quicker and easier way. It is still a library that has to grow, but in the current version you can manipulate the DOM, create, copy and delete elements, and use localStorage and sessionStorage, all this from an easy way.
Getting Started
There is two builds, development, and production.
- Development: mei.js
- Production: mei.min.js
CDN
<!-- Production -->
<script src="https://unpkg.com/meijs@1.0.3/dist/mei.min.js"></script>
<!-- Development -->
<script src="https://unpkg.com/meijs@1.0.3/dist/mei.js"></script>
NPM
$ npm install meijs
There is two builds, development, and production.
// Production
const Mei = require('meijs/dist/mei.min.js');
// Development
const Mei = require('meijs/dist/mei.js');