Open https://snjro.github.io/Digu/ to use Digu immediately
There are two ways to use Digu as a user:
To use Digu without installing, you need (to set up) a server. Digu is a semi-serverless application, it should start with opening a html file on your local environment with a browser in theory. However, it won’t work due to the violation of Same-Origin Policy. To comply this policy, you need to use Digu with a server. I suggest the folowing methods, choose the one you prefer:
| # | Method | Dificulty |
|---|---|---|
| 1 | Using GitHub Pages | easy |
| 2 | Using Visual Studio Code |
technical |
| 3 | Using Node.js |
technical |
This method uses GitHub Pages. It hosts the files in the /_build folder in this repository. You can access it from https://snjro.github.io/Digu/.
This method uses Visual Studio Code (VSCode) and its extention Live Server to set up a local server for using Digu.
The steps:
-
Download deploy directory
Download the directory./_buildthat is the deploy directory for the web application. -
Install
VSCode
Download VSCode from the official site and install it. -
Open the downloaded folder on VSCode
-
Install the extention
Live Server -
Start Live Server
Then, Your local server is started at port: 5500.
Digu will show up in your default browser with URL http://127.0.0.1:5500/ or http://localhost:5500/.
This method uses Node.js and and its extention Live Server to set up a local server for using Digu.
The steps:
-
Download deploy directory
Download the directory./_buildthat is the deploy directory for the web application. As an example, assume that the downloaded folder_buildis place under theD:\Digu. Then, the directory path would beD:\Digu\_build -
Install
Node.js
Download Node.js from the official site and install it. -
Navigate to the downloaded folder
In your terminal, run this command to navigate to the directoryD:\Digu\_build:cd D:\Digu\_build
-
Run
http-serverby npx
In your terminal, run this command to runhttp-server:npx http-server
Then,
http-serverhas started like this:

Visit
http://localhost:8080with your browser to view Digu.
To use Digu as an desktop app, you need to install it. Download the latest installer from the release page and install it. Choose the right one for the OS you are using:
| OS | Installer ( x.x.x is a version name) |
Supported Platform |
|---|---|---|
| Linux | digu_x.x.x_amd64.deb |
Ubuntu 18.04 and above |
| macOS | Digu_x.x.x_x64.dmg |
macOS 10.15 and above |
| Windows | Digu_x.x.x_x64-en-US.msi |
Windows 7 and above |


