- This Is A JavaScript Library To Make Your Work Easier/Faster,
You Can See Functionalty.js Website From Here - Project Created In 16 / 5 / 2022
-
So To Get Started Using Functionalty.js Library,
You Have To Install It By npmnpm install functionality.js
-
Or You Can Install it By CDN In Your HTML File
<script src="https://cdn.jsdelivr.net/npm/functionality.js@latest/dist/functionality.min.js"></script>
<body> <h1></h1> <p></p> <script src="https://cdn.jsdelivr.net/npm/functionality.js@latest/dist/functionality.min.js"></script> <script> heading = document.querySelector("h1"); number = document.querySelector("p"); heading.innerText = functionality.capitalize("hello"); number.innerText = functionality.randomNumber(1, 100); </script> </body>
-
By The Beginning You Have To Import Library After Installation,
You Can Import Unminified Versionimport functionality from "functionality.js/lib/main";
-
Since You Have Downloaded And Imported The Library You Can Use It As Following ...
- Now You Have Been Setup Everything
- You Can Visit Functionalty.js Site From Here
- Or This is A Quick Start From Here
- Adding Logo
- ✔️ Converting Library Into TypeScript
- ✔️ Making File Supported By All Of Search Engines
- ✔️ Making File Compressed
- ✔️ Making File Light Weight
- ✔️ Testing The Library
- ✔️ Handling Function Errors
- Making A Documentation Website
- Adding Dark And White Theme In Website
- ✔️ Adding New Functions
- ✔️ Making npm Package For Installation
- ✔️ Making a CDN Importing
-
First Clone The Repository
git clone https://github.com/Ali-Eldeba/functionality.js.git
-
Then Install Packages (node_modules)
npm install
-
Run Website In Your Locahost Server With Live Reload
npm start
-
Feel Free To Add What You Want!