Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/GoogleChromeLabs/serial-terminal
Demo application for the Web Serial API.
https://github.com/GoogleChromeLabs/serial-terminal
Last synced: 3 months ago
JSON representation
Demo application for the Web Serial API.
- Host: GitHub
- URL: https://github.com/GoogleChromeLabs/serial-terminal
- Owner: GoogleChromeLabs
- License: apache-2.0
- Created: 2019-08-08T20:57:33.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-17T16:40:06.000Z (5 months ago)
- Last Synced: 2024-06-17T18:50:31.376Z (5 months ago)
- Language: TypeScript
- Homepage: https://googlechromelabs.github.io/serial-terminal/
- Size: 1.14 MB
- Stars: 209
- Watchers: 14
- Forks: 64
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Serial Terminal
This repository contains a Progressive Web App that allows the user to
communicate with a locally connected serial device through an interactive
terminal. This provides a demonstration of the [Serial
API](https://wicg.github.io/serial/).This API is available starting with Chrome 89, Edge 89, and Opera 76.
## Privacy
This application is served statically and is cached for offline use. No
analytics are collected. All communication with the serial device happens
locally.## Building
This project is written in TypeScript and uses npm and Vite to manage
dependencies and automate the build process. To get started clone the
repository and install dependencies by running,```sh
npm install
```To create a production build in the `dist` folder run,
```sh
npm run build
```To start a local development server run,
```sh
npm run dev
```