Serial console access in the browser.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
Go to file
Drew Bednar f381147f16 Adds build step using vite and breaks code into JS6 modules (#14)
This is a large update. I've selected Vite as the build system for this project. I tried other tools like golang minify but this had the most useful features and serves as a dev server too. I think a lot can be done to shore up the management of global state in the application. For now this works.

closes #13

#### Changes
- adds vite for dev/build
- Breaks out JS into JS6 modules
- Updates docker file to have two stage build

Co-authored-by: Drew Bednar <drew@androiddrew.com>
Reviewed-on: #14
8 months ago
examples/micropython Adds Transmit functionality and fixes disconnect error in the event of powerloss (#11) 8 months ago
src Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
.dockerignore Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
.gitignore Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
Dockerfile Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
Makefile Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
README.md Fix disconnect button (#3) 8 months ago
package-lock.json Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
package.json Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
postcss.config.js Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago
tailwind.config.js Add Tailwindcss as dev dependency (#5) 8 months ago
vite.config.js Adds build step using vite and breaks code into JS6 modules (#14) 8 months ago

README.md

Web Serial Console

Serial console access in the browser! This project uses an experimental Web Serial API available, as of 08/06/2024, on Chrome 89+, Edge 89+, or Opera 75+.

This is a work in progress and a learning experiment. Feel free to file an issue if you encounter one.

Local Development:

A basic http server can be run using make serve.

Additional Instructions TBD