Skip to content
OS.js - JavaScript Web Desktop Platform
JavaScript CSS Shell Dockerfile HTML
Branch: master
Clone or download

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Replaced Travis with Github Actions (#732) Feb 18, 2020
dist Initial commit Feb 16, 2020
src Initial commit Feb 16, 2020
vfs/demo Initial commit Feb 16, 2020
.gitignore Initial commit Feb 16, 2020
CONTRIBUTING.md Updated document links Feb 18, 2020
Dockerfile Initial commit Feb 16, 2020
LICENSE Initial commit Feb 16, 2020
README.md
docker-compose.yml Initial commit Feb 16, 2020
entrypoint.sh Initial commit Feb 16, 2020
package-lock.json Updated dependencies Apr 13, 2020
package.json Updated dependencies Apr 13, 2020
webpack.config.js Initial commit Feb 16, 2020

README.md

OS.js Logo

OS.js

OS.js is an open-source web desktop platform with a window manager, application APIs, GUI toolkit, filesystem abstractions and much more.

Support Support Donate Donate Community

Introduction

This is the OS.js base repository that you can use as a template to make your own distributions, installations and development environments.

Try it yourself

Visit the official demo for a preview version. Please note that some features are disabled and might be outdated or unavailable at times.

ScreenShot

Installation

OS.js runs on http://localhost:8000 by default.

Demo

You can run a demo using Docker without checking out any source-code:

docker run -p 8000:8000 osjs/osjs:latest

Custom

Clone the master branch of the official OS.js repository:

git clone -b master --single-branch https://github.com/os-js/OS.js.git
cd OS.js

Docker

You can run OS.js locally without installing anything on your host system if you have Docker and Docker Compose installed.

Simply run the following command and a complete environment will be set up for you:

docker-compose up

Locally

To install directly on the host system you'll need Node 10 (or later).

# Install dependencies
npm install

# It's recommended that you update dependencies
npm update

# Optionally install extra packages:
# For a list of packages, see https://manual.os-js.org/v3/resource/official/
npm install @osjs/example-application

# Discover installed packages
npm run package:discover

# Build client
npm run build

# Start serving
npm run serve

Contribution

Documentation

See the Official Manuals for articles, tutorials and guides.

Links

You can’t perform that action at this time.