- This is an OpenSource project - so everyone is welcome to make further improvements (issues, feature requests, pull requests, ...).
- This is a simple WebsocketClient-Application with Input-Completition and some small nice features. You can use SecureWebsockets (SSL) or normal Websockets.
- Connect to multiple servers at the same time.
- Save messages and Auto-Complete
- Modern Chat-like design
- Multiple themes
- All platforms supported
- Nice JSON-Data formatting
- Binary message supported
- Basic Authentification supported
- Sec-WebSocket-Protocol supported
- Custom AES-Ecryption
- Message Presets - Available: Crescience and RTOC
This app can be seen as an Ionic5 React example, that can be deployed on all available platforms with the following features:
- Automatic language detection (with custom translation files)
- Using storage
- Using Websocket connections
- Custom-AES-Encryption
I provide platform-specific instructions in this readme below.
- Download the latest version for your system in the Release-Section
- Soon there will be an Android-App in the PlayStore
- This app is also hosted on firebase: WebsocketClient WebApp
Prerequirements: You need to have Ionic 5 installed
If you want build this Websocket Client by your own, you need to follow these steps:
- Clone this repository and go to it's directory
- Execute
npm install
to install the dependencies - Run local server with
ionic serve
To build this App for any system you need to build it with ionic first
'ionic build --release'
The output will be in the "build" folder.
The build-process for the web is already finished. You just need the "build" folder.
Go into the "build" folder and execute serve -p 8050
to run the App at port 8050.
Prerequirements: You need to have Android Studio installed
You need to add Android with capacitor only once:
ionic capacitor add android
Then you can copy the build to AndroidStudio
ionic capacitor copy android
After this you need to open Android Studio and build the apk
npx cap open android
You may want to edit the /App/stc/main/AndroidManifest.xml and add these two lines
android:usesCleartextTraffic="true"
android:hardwareAccelerated="true"
in the 'application' tag
And also you dont want to have an Ionic Icon and Ionic Loading screen? Then replace all 'splash.png' in the 'android\app\src\main\res\drawable*' folders and all icons in the 'android\app\src\main\res\mipmap*' folder. Annoying -> Good that we have tools like this and that
Prerequirements: You need electron installed
You need to add Electron with capacitor only once :
ionic capacitor add electron
Then edit the 'index.js' file in the "electron" folder
let useSplashScreen = false;
Then edit the'package.json' file in your root-directory:
"homepage": ".",
This is somehow needed
Copy your build to electron: npx cap copy
Important: Change -> in electron/app/index.html
Go to the Electron directory cd electron
and test, if electron works npm run electron:start
.
Then you can build it for all systems:
electron-packager . --platform=win32 --overwrite
electron-packager . --platform=darwin --overwrite
electron-packager . "WebSocketClient" --all --overwrite
Exeutables will be in electron/capacitor-app-*/
Prerequirements: You need a firebase-account and firebase installed and configured
Initialize firebase for this App once: firebase init
and follow the guide.
Then you can upload you build with
firebase deploy
electron-windows-store --input-directory PATHTOAPP\electron
--output-directory PATHTOAPP\WindowsStore --package-version 1.0.0.0
--package-name WebsocketClient
The custom encryption consists of two parts:
- Encryption of every message with AES and first 16-chars of SHA256-Hash of provided password AES is used with IV=16random byte. These random bytes are append to the encrypted message.
- Additionally, the client sends a json to the server to get authentification (handshake):
{authorize: FULL_SHA256_HASH}
# /etc/systemd/system/WebsocketClient.service
[Unit]
Description=RTOC Remote
After=network.target
[Service]
Type=simple
User=kelleroot
Group=kelleroot
WorkingDirectory=/home/**USER**/ModernWebsocketClient/
ExecStart=/snap/bin/serve -p 8888 /home/**USER**/ModernWebsocketClient/build
SyslogIdentifier=RTOCRemote
StandardOutput=syslog
StandardError=syslog
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.target
After creating the file, you need to call sudo systemctl daemon-reload
.
Then you can start the service with sudo systemctl start WebsocketClient
.
To run it after boot: sudo systemctl enable WebsocketClient
.
To get the log of the service: sudo journalctl -u WebsocketClient
.
<VirtualHost *:80>
ServerName MYSERVERADRESS
ServerAdmin [email protected]
ProxyPreserveHost On
Redirect 301 / https://MYSERVERADRESS
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName MYSERVERADRESS
ServerAdmin [email protected]
ProxyPreserveHost On
ProxyRequests Off
<Location />
ProxyPass http://localhost:8888/
ProxyPassReverse http://localhost:8888/
RewriteEngine on
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]
RewriteRule .* ws://localhost:8888%{REQUEST_URI} [P]
</Location>
</VirtualHost>
</IfModule>
Don't forget to enable the apache-config with sudo a2ensite PAGENAME
To add SSL-Encryption, just call sudo certbot -d MYSERVERADRESS