Omni_Dev is a professional, lightweight, single-page web application containing a suite of productivity tools for developers.
Author: anonymous-201
Repository: omni_dev
- Fast UI: Built with Tailwind CSS for a lightning-fast, responsive experience.
- Modern Dashboard: Dark-mode optimized design with Lucide Icons.
- Tool Workspace: A dynamic "Single Page" engine that loads tools without reloading the page.
- Fully Searchable: Find tools instantly via the search bar.
- Modular Design: Adding a new tool only requires 3 small steps in
script.js.
- HTML5
- Tailwind CSS (Styling)
- Vanilla JavaScript (The Tool Engine)
- Lucide Icons (Visuals)
Simply open index.html in any modern web browser.
- Create a new repository on GitHub named
omni_dev. - Upload
index.html,style.css, andscript.js. - Go to Settings > Pages.
- Select Deploy from a branch and select
main. - Your site will be live at
https://anonymous-201.github.io/omni_dev/.
To expand this project, follow these steps in script.js:
- Register it: Add a new object to the
toolsarray at the top ofscript.js. - Create the logic: Write a function (e.g.,
setupMyTool(container)) that injects HTML into the workspace. - Handle events: Define the functional logic for the tool inside the
setupfunction. - Hook it up: Add the condition inside the
openTool(id)function.