Git Product home page Git Product logo

owd-client's Introduction

Open Web Desktop - Client

Open Web Desktop 2.0.0-beta with Vue 3 and TypeScript

Overview

Open Web Desktop is a project that aims to provide a simple environment to create your own web desktop, extendable through a series of modules and integrations. OWD Client is based on Vue.js 3 and TypeScript.

Check the demo of the owd-client base repository, decked out with some modules.

Features

  • Open-source web desktop client based on Vue.js 3
  • Fully extendable through app and desktop modules
  • Fully extendable through pages and Vue components
  • Notifications, terminal commands, multiple themes
  • Vuex, Vue Router and Vue i18n implemented by default
  • Vuetify.js and Moment.js implemented by default
  • TypeScript and Vite support

About this project

Open Web Desktop is divided in two main repositories:

  • owd-client: Open Web Desktop client, made with Vue.js 3
  • owd-server: Open Web Desktop server, made with Nest.js (TBA)

Getting started

Required software:

When you are ready, bootstrap a new instance by running:

npx create-owd-app <app-name>

Once the process is complete, you can start with the client development:

# Run the dev server
npm run serve

# Build for production
npm run build

Modules

OWD modules can extend your Open Web Desktop instance.
You can find some modules available for all at topics/owd-modules.

Install a new module directly

You can simply install a new module with npm install <git-link>, unless you want to customize it.

Install and customize a new module

If you are planning to customize a module, clone it into src/modules/app/<module-name>.
Always check the README.md, you may have to move some folders (for example "config" or "public").

Also take a look at the package.json, there may be additional dependencies to install, or other OWD modules. For each dependency you find listed, install it by running npm install <dependency> in the root folder of your instance.

Define the installed module

To load an installed module, define it under my-owd-client/client.extensions.ts.
Be sure to add every module in the app.modules array like the default ones:

import AboutModule from "@owd-client/core/src/modules/app/about";
import DebugModule from "@owd-client/core/src/modules/app/debug";

// installed modules
import CustomModuleSource from "./src/modules/app/custom-module/client";
import CustomModuleInstalled from "owd-custom-module/client";

export default {
  app: {
    modules: [
      AboutModule,
      DebugModule,
      CustomModuleSource,
      CustomModuleInstalled
    ]
  },
  ...

Contributing

Local development

OWD Client repository is a Yarn workspaces monorepo that includes the client boilerplate, the client core, and in the future also something else like the docs, just to keep everything in a single place.

Setting up your environment

Required software:

Once you have everything installed, clone the repository:

# Using HTTPS
git clone https://github.com/owdproject/owd-client.git

# Using SSH
git clone [email protected]:owdproject/owd-client.git

Then install all the dependencies, and run Open Web Desktop in development mode.

# Navigate to the owd-client folder
cd owd-client

# Install dependencies using yarn
yarn install

# Run OWD in development mode
yarn serve

This will bootstrap the Yarn workspaces, allowing you to run and edit both client and core packages.
If you intend to contribute to the project, please join our community chat.

Supporters

Your support is essential to keep this project active.
If you find Open Web Desktop useful, please consider donating.

Open Web Desktop Patreon ย  Open Web Desktop Liberapay

License

This project is released under the GNU GPL3 License

owd-client's People

Contributors

hacklover avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.