DEV Community

Max
Max

Posted on

Build for the Web Without Limits: Introducing Infinity OS 🚀

Hello, Dev community! I’m the CEO and lead dev at Infinity Systems, and I want to show you something we’ve been building for last 7 months: Infinity OS.

​It’s not just a website. It’s a browser-based operating system designed for privacy, freedom, and developer-first experience.

Why build an OS inside a browser? 🌐

Most web apps are trapped in a "sandbox" that limits creativity. We wanted to see how far we could push Vanilla JS/HTML/CSS.
Infinity OS features:

​- Encrypted File System: Your data stays private and secure.
​- Tor-Cleaned Proxy Browser: Browse with reinforced "Do Not Track" logic and a filter-free search engine (Infinity Search).
​- Task Manager: Real-time process monitoring for every iframe/window.

The Developer Experience: No more Callback Hell 🛠️

One of our core goals was to make system calls as simple as possible. We’ve adapted standard methods so they are intuitive:

// Yes, it's that simple in Infinity OS
const result = await parent.confirm("Do you want to install this tool?");
if (result) {
    await parent.addApp(myAppMetadata);
}
Enter fullscreen mode Exit fullscreen mode

Our alert, prompt, and print methods all support await, allowing you to write clean, linear code without learning complex proprietary APIs.

The Infinity Store & Package Manager 📦

We’ve built a decentralized marketplace. What makes it different?
​- JSON "tester" field: No vague requirements. Testers provide detailed reports (e.g., "EaglerCraft 1.8: Stable on 4GB RAM, lags on 2GB").
​- NPM Support via deps: Our package manager automatically resolves and installs npm dependencies for your app during deployment.
​- Third-party Repos: Users can plug in any meta.json URL, making the ecosystem censorship-resistant.

We Need Your Tools! 🤝

​Infinity OS is ready for more professional tools. We are looking for devs to build:
​- System Utilities: File managers, resource monitors, terminals.
​- Productivity: Markdown editors, IDEs, spreadsheets.
​- Privacy Tools: OSINT scrapers and anonymous crawlers.

How to Join?

We’ve created a simple submission form for developers:

HERE

We've already ported Minecraft and built a fully functional terminal-based indexer!
​What do you think about the future of Web-based OS? Let's discuss in the comments!

Top comments (0)