/xScript

:fire: Javascript library that offers a lot of possibilities!

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

xScript

About xScript

Description: xScript is a Javascript library with many features to write your code easily and fastly.
Date of birth: May 11, 2022
Author: Lockstart
License: GPL-3.0 License

Installation

Into your Javascript code

First, import it into your file code

import * from "https://xscript.vercel.app/xscript.js";

You can also use the minified version by using

import * from "https://xscript.vercel.app/xscript.min.js";



Then, initialize your code by using the following script:

import * from "https://xscript.vercel.app/xscript.js";
const xScript = new XScript();
xScript.init();

Directly to your HTML file

First import the stylesheet

<script src="https://xscript.vercel.app/cdn.js"></script>

Then, to your Javascript file add the following code:

const xScript = new XScript();
xScript.init();

OR add this code in a <script> tag.