mirror of
https://github.com/TxtDot/webder.git
synced 2024-11-05 13:13:59 +03:00
Proxy that renders client-side JS apps (e.g. React) on server
.github/workflows | ||
src | ||
.env.example | ||
.eslintrc.json | ||
.gitattributes | ||
.gitignore | ||
.prettierrc | ||
docker-compose.yml | ||
Dockerfile | ||
LICENSE | ||
package.json | ||
pnpm-lock.yaml | ||
README.md | ||
tsconfig.json |
webder
Proxy that renders client-side JavaScript apps (e.g. React apps) on server and returns the resulting HTML code.
- JS is disabled/unsupported, no proxy: blank page or "Enable JS to continue"
- With webder: all desired content, no need to use JS interpreter
Warning
No HTML purification is performed, so passing code directly from webder can lead to XSS attacks. Local network requests are not blocked too, check domains/IPs to avoid SSRF attacks. Webder is not intended to be used as a standalone internet-facing browser wrapper. It is a kind of internal service to which other apps (maybe internet-facing) send API requests. Either restrict connections to
127.0.0.1
only, or put webder behind a firewall and a reverse proxy (probably with authentication).
Usage
/render?url=...
For available config fields, check .env.example
.
Docker is supported.
npm install
npm run build
npm start