A React-based client application for Shlink
Find a file
Alejandro Celaya e0c20c704e
Merge pull request #432 from matiasgarciaisaia/feature/conf-volume
Support servers.json in a conf.d directory
2021-05-29 11:58:41 +02:00
.github Ensured proper ref is checked out on preview env 2021-05-09 21:09:24 +02:00
config Removed new empty line added by mistake 2021-05-29 11:54:08 +02:00
dist Created dist dir 2018-08-05 11:39:49 +02:00
public Added crossorigin=use-credentials to manifest.json, so that credentials are passed and it is propery downloaded 2020-10-03 11:00:56 +02:00
scripts Renamed env vars 2021-05-29 11:30:35 +02:00
src Improved feedback when editing a short URL 2021-05-08 10:56:20 +02:00
test Ensured new visits are prepended and not appended, ensuring they keep the proper order 2021-05-01 16:39:13 +02:00
.dockerignore Simplified docker image building, as it will now be run in a different job as the dist file release 2020-05-17 10:13:33 +02:00
.eslintrc Updated to coding-standard v1.2.2 2021-03-05 11:14:58 +01:00
.gitignore Catched error when loading servers from a servers.json file 2019-04-28 13:07:55 +02:00
.stylelintrc Added stylelint config 2018-08-25 10:22:25 +02:00
CHANGELOG.md Updated changelog 2021-05-29 11:40:14 +02:00
CONTRIBUTING.md Added CONTRIBUTING.md file 2020-09-19 17:32:54 +02:00
docker-compose.override.yml.dist Replaced yarn by npm 2019-04-14 21:58:10 +02:00
docker-compose.yml Created workflow for ci in github actions 2020-12-12 21:29:25 +01:00
Dockerfile Renamed env vars 2021-05-29 11:30:35 +02:00
indocker Created Storage service test 2018-12-19 20:43:55 +01:00
jest.config.js Updated pattern for code coverage collection 2020-09-06 09:18:02 +02:00
LICENSE Updated date on license file 2020-01-19 21:20:32 +01:00
package-lock.json Updated to stryker 5 2021-05-15 12:02:43 +02:00
package.json Updated to stryker 5 2021-05-15 12:02:43 +02:00
README.md Replaced scrutinizer with codecov 2020-12-19 12:55:30 +01:00
shlink-web-client.d.ts Fixed headers when exporting visits to CSV 2021-03-14 18:12:10 +01:00
shlink-web-client.gif Updated app gif 2020-12-24 10:58:59 +01:00
stryker.conf.js Updated to stryker 5 2021-05-15 12:02:43 +02:00
tsconfig.json Installed TS and updated linter 2020-08-22 08:06:41 +02:00

shlink-web-client

Build Status Code Coverage GitHub release Docker pulls GitHub license Paypal Donate

A ReactJS-based progressive web application for Shlink.

shlink-web-client

If you are trying to find out how to run the project in development mode or how to provide contributions, read the CONTRIBUTING doc.

Installation

There are three ways in which you can use this application.

The easiest way to use shlink-web-client is by just going to https://app.shlink.io.

The application runs 100% in the browser, so you can safely access any shlink instance from there.

Docker image

If you want to deploy shlink-web-client in a container-based cluster (kubernetes, docker swarm, etc), just pick the shlinkio/shlink-web-client image and do it.

It's a lightweight nginx:alpine image serving the static app on port 80.

Self-hosted

If you want to self-host it yourself, get the latest release and download the distributable zip file attached to it (shlink-web-client_X.X.X_dist.zip).

The package contains static files only, so just put it in a folder and serve it with the web server of your choice.

Considerations:

  • Provided dist files are configured to be served from the root of your domain. If you need to serve shlink-web-client from a subpath, you will have to build it yourself following these steps.
  • The app has a client-side router that handles dynamic paths. Because of that, you need to configure your web server to fall-back to the index.html file when requested files do not exist.
    • If you use Apache, you are covered, since the project includes an .htaccess file which already does this.
    • If you use nginx, you can see how it's done for the docker image and do the same.

Pre-configuring servers

The first time you access shlink-web-client from a browser, you will have to configure the list of shlink servers you want to manage, and they will be saved in the local storage.

Those servers can be exported and imported in other browsers, but if for some reason you need some servers to be there from the beginning, starting with shlink-web-client 2.1.0, you can provide a servers.json file in the project root folder (the same containing the index.html, favicon.ico, etc) with a structure like this:

[
  {
    "name": "Main server",
    "url": "https://doma.in",
    "apiKey": "09c972b7-506b-49f1-a19a-d729e22e599c"
  },
  {
    "name": "Local",
    "url": "http://localhost:8080",
    "apiKey": "580d0b42-4dea-419a-96bf-6c876b901451"
  }
]

The list can contain as many servers as you need.

If you are using the shlink-web-client docker image, you can mount the servers.json file in a volume inside /usr/share/nginx/html, which is the app's document root inside the container.

docker run --name shlink-web-client -p 8000:80 -v ${PWD}/servers.json:/usr/share/nginx/html/servers.json shlinkio/shlink-web-client

Be extremely careful when using this feature.

Due to shlink-web-client's client-side nature, the file needs to be accessible from the browser.

Because of that, make sure you use this only when you self-host shlink-web-client, and you know only trusted people will have access to it.

Failing to do this could cause your API keys to end up being exposed.

Serve project in subpath

Official distributable files have been built so that they are served from the root of a domain.

If you need to host shlink-web-client yourself and serve it from a subpath, follow these steps:

  • Download shlink-web-client source code for the version you want to build.
  • Decompress the file and cd into the resulting folder.
  • Open the package.json file in the root of the project, locate the homepage property and replace the value (which should be an empty string) by the path from which you want to serve shlink-web-client.
    • For example: "homepage": "/my-projects/shlink-web-client",.
  • Build the project:
    • For classic hosting:
      • Download node 10.15 or later.
      • Install project dependencies by running npm install.
      • Build the project by running npm run build.
      • Once the command finishes, you will have a build folder with all the static assets you need to run shlink-web-client. Just place them wherever you want them to be served from.
    • For docker image:
      • Download docker.
      • Build the docker image by running docker build . -t shlink-web-client.
      • Once the command finishes, you will have an image with the name shlink-web-client.