Monpoke / OS.js

OS.js - JavaScript Web Desktop Platform

Home Page:https://www.os-js.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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/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

About

OS.js - JavaScript Web Desktop Platform

https://www.os-js.org/

License:Other


Languages

Language:JavaScript 69.3%Language:CSS 10.1%Language:Shell 9.1%Language:Dockerfile 8.7%Language:HTML 2.7%