Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r2dev2/noscriptchat
A web chat application that does not use any filthy javascript
https://github.com/r2dev2/noscriptchat
Last synced: 7 days ago
JSON representation
A web chat application that does not use any filthy javascript
- Host: GitHub
- URL: https://github.com/r2dev2/noscriptchat
- Owner: r2dev2
- Created: 2021-07-08T06:11:35.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-08T06:11:48.000Z (over 3 years ago)
- Last Synced: 2024-11-09T06:45:28.568Z (2 months ago)
- Language: Python
- Size: 269 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NoScriptChat
A proof of concept that you can make semi-usable websites that stream data without javascript.
## Why
According to noscripters, [javascript that alters the DOM is an Avengers level threat to your freedom](https://www.gnu.org/philosophy/javascript-trap.html). You are safe if you use noscript, however, and you definitely won't be tracked by non-js mechanisms.
Also, Javascript is
![bloat](./Bloat.png)
## Usage
A hosted version is at https://NoScriptChat.r2dev2bb8.repl.co
### Local Usage
1. Install dependencies
```
python3 -m pip install flask gunicorn
```2. Run
```
gunicorn -b 0.0.0.0:8080 --threads 100 main:app
```