A sleek and powerful web-based operating system with real-time app development capabilities and an integrated app store.
- 🖥️ Modern Desktop Interface
- 📝 Built-in VS Code Editor
- 🚀 Real-time App Development
- 🔄 Drag & Drop Support
- 💾 Local Storage Integration
- 🎨 Custom App Creation
- 📦 App Store with GitHub Integration
- ⚡ Smooth Animations
- 🎯 Window Management System
- Clone the repository
- Open
index.html
in your browser - Start creating and installing apps!
Create custom apps using the built-in VS Code editor with:
- HTML for structure
- CSS for styling
- JavaScript for functionality
Install apps directly from GitHub repositories. Apps require an app.json
manifest:
{
"name": "App Name",
"version": "1.0.0",
"icon": "fa-icon-name",
"files": {
"html": "app.html",
"css": "app.css",
"javascript": "app.js"
},
"description": "App description"
}
- Go to the app store
- Copy the app's Git URL from the app's GitHub page
- Paste the URL in the app store and click "Install"
- Open the VS Code editor.
- Use the built-in editor to create your app.
- Click the save button.
- Create a GitHub repository for your app.
- Create an
app.json
manifest file.
{
"name": "App Name",
"version": "1.0.0",
"icon": "fa-icon-name",
"files": {
"html": "app.html",
"css": "app.css",
"javascript": "app.js"
},
"description": "App description"
}
- make 3 files in the root directory of the repository:
appname.html
appname.css
appname.js
- in each file take the code you wrote in the editor and paste it into the files.
- Commit your changes and share the repository URL to people to install your app.
- In the app store, paste the URL and click "Install" to install your app.
- Enjoy your app!
- Vanilla JavaScript
- Monaco Editor
- FontAwesome Icons
- GitHub API Integration
- Fork the repository (make sure to credit me)
- Create your feature branch
- Submit a pull request