https://github.com/bfulop/sandbox_render_server
The server component of the sandboxed renderer
https://github.com/bfulop/sandbox_render_server
Last synced: 2 months ago
JSON representation
The server component of the sandboxed renderer
- Host: GitHub
- URL: https://github.com/bfulop/sandbox_render_server
- Owner: bfulop
- Created: 2021-07-17T20:20:34.000Z (almost 4 years ago)
- Default Branch: streams
- Last Pushed: 2021-07-17T21:12:30.000Z (almost 4 years ago)
- Last Synced: 2025-01-22T07:31:51.867Z (4 months ago)
- Language: TypeScript
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The server component of the Sandboxed Renderer
See a [video demo](https://www.youtube.com/watch?v=a8Fpy4dadf0)
## Goals
1. learn and practice fp-ts and functional programming techniques
2. render any website in a sandboxed environment without any JavaScript arriving to the "viewer" sideSee the [client component here](https://github.com/bfulop/sandboxclient)
## Architecture Overview


## ES Module support in Node.js
Need to add a `package.json` file in every `/es6/..` directory with:
```json
{
"type": "module"
}
```TODO: add some post `npm install` or `tsc` hook to add them...