Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```