A web based Windows 98 desktop remake.
Includes:
- Notepad (separate README)
- Sound Recorder (separate README)
- Paint (separate repository)
- Calculator (separate README)
- 3D Pipes (separate repository)
- 3D FlowerBox (original repository) by Kevin Shannon
- Minesweeper (separate README; original repository) by Jon Ziebell
- Solitaire (original repository) by Radovan Janjic
- Pinball (original repository) ported by Muzychenko Andrey and Alula
- Winamp 2.9 (separate README; original repository) by Jordan Eldredge
- Windows Explorer / Internet Explorer (separate README)
- Help Viewer
- ๐ Clippy (original repository)
Features:
- Drop files onto the desktop, and they'll be stored in a virtual filesystem
- Load Windows themes! Many are included in the Themes folder on the desktop.
- Easter eggs (try a famous cheat code ๐)
- Meticulous detail in many areas (altho there's obviously lots "missing")
- Help > Help Topics in Paint, Sound Recorder, Notepad, and Minesweeper
- You can add the site to your homescreen on mobile
๏ผฅ๏ผฎ๏ผด๏ผฅ๏ผฒใใ๏ผท๏ผฉ๏ผฎ๏ผค๏ผฏ๏ผท๏ผณใ๏ผ๏ผใไฝ้จใธใใใใ
Not yet licensed. This project is currently source-available / shared source, but not open source.
Apps that it would be nice to integrate:
Other online operating systems / web desktops:
Name & Link | Vague Description | Repo & License | Chat |
---|---|---|---|
ย Rahul.io | another Windows 98 remake | repo here - MIT license | |
ย Windowsย 93 | a "fictional version of Windows" | (not open source currently) | Discord |
๐ก ZineOS | emojis everywhere | repo here - MIT license | Discord |
ย EmuOS | emulator-focused Win9X desktop | repo here - shared source | Discord |
ย OS.js | a more serious web desktop | repo here - simplified BSD license | Gitter |
ย Friend | another serious one | repo here - different licenses for different parts | |
ย CloudDesk | another serious one | (explicitly not open source) | |
ย AaronOS | interesting aesthetic | repo here - shared source | Discord |
ย Webย Desktop | Windows 10 like "startpage" | ||
ย System | Windows 10 like thing | ||
ย WinXP | Windows XP | repo here - MIT license | |
Windows 98 - Packard Belle | Windows 98 | repo here - shared source | |
X-WebDesktop-Vue | Windows 7 | repo here - MIT license | |
ย vue win3.1 | Windows 3.1 | repo here - shared source | |
ย VirtualDesktop | Screenshot flows, several OSes | ||
GUIdebook | Screenshots, several OSes | ||
xp-js.glitch.me | OSes |
| | |
demo.system-7 | Mac OS Expains more detail https://youtu.be/bXBsJA8Wbj4 | | |
wow | | |
[CHIPTUNE-OS] chiptune OS for chiptune chip-player-js another os for chiptune all links for chiptune windows96 whait theres another one
JS Json : https://github.com/vmware/xpath-for-json
Plus many more web desktops on Wikipedia, awesome-web-desktops, and awesome-OS.
Libraries:
- OS-GUI, which grew out of this project
- Packard Belle, React95, and another one called React95, with similar goals to OS-GUI
- BrowserFS, a filesystem abstraction library powering 98.js
Also:
- Awesome Atwood's Law, a curated list of JavaScript reimplementations, similar to /r/atwoodslaw/
See CONTRIBUTING
- Install Git if you don't already have it.
- Install Node.js if you don't already have it.
- Clone the repository.
- Open up a terminal / command prompt in the project directory, and run
npm install
to install dependencies. - Run
npm start
to start up a live-reloading development web server.
When pulling changes from git, run npm install
again in case there are any new or updated dependencies.
(If you know package-lock.json
hasn't changed, you shouldn't need to do this.)
Some dependencies are versioned with npm, but pulled into the repo with npm run pull-libs
To update subrepos, or push changes to them, install git-subrepo. You don't need this tool to clone the project and get up and running, as subrepos are just normal subdirectories with a .gitrepo
metadata file.
Note that the metadata file references specific commit hashes, including between repositories, so it's best to avoid rebasing when subrepo updates are involved, i.e. once you do a subrepo command, it makes a commit, and should leave it (and earlier commits) alone, and you should leave commits in the subrepo alone, before and up to any commits referenced by the containing project.
I'd recommend phrasing commit messages to apply to the subrepo, primarily, rather than the containing project.
If you so much as edit the commit message for a git subrepo push
ed commit, you'd have to update the .gitrepo
metadata file manually,
OR you could drop the commit you pushed and the git subrepo push
commit (which updates the metadata) and do git subrepo pull
instead (which btw gives you an option to rename the commit; and I think renaming that commit would be safe after the fact anyways as long as it's the last commit and not pushed).
See TODO