Get start


on this page you will learn how to run easy js and import this package to your project very easy

Installation

Install EasyJS via npm

npm install easyjs

OR

download EasyJs from github

THEN

Import EasyJS To Your Project

import { EasyJS } from '/components/dist/easyjs.js';

note : your js script TAG must have module type attribute LIKE : type='module'

Finally call the component static method

import { EasyJS } from '/components/dist/easyjs.js';
EasyJS.component('component name', 'component options');

Let's give an example (make a modal)

import { EasyJS } from '/components/dist/easyjs.js';
EasyJS.component('modal', {
   wrapperClass: 'modalWrapperClass',
   handlerClass: 'modalHandlerClass',
});

In the above example, easy js will create an instant modal. If you like please go to see the complete details with the list of easy js components