Go to file
Amey Inamdar 081864a2dd
Merge pull request #12 from espressif/safari_check
Add a check for unsupported safari browser
2021-08-20 22:17:03 +05:30
.github/workflows Set JIRA component in workflow via environment 2021-08-09 10:54:30 +03:00
assets Layout and UX changes. Added a few validations 2021-08-04 19:45:21 +05:30
.gitignore add package.json to specify dependencies, add node_modules to .gitignore 2021-06-18 11:32:46 +02:00
ESPLoader.js Layout and UX changes. Added a few validations 2021-08-04 19:45:21 +05:30
index.html Add a check for unsupported safari browser 2021-08-16 18:06:18 +05:30
index.js Layout and UX changes. Added a few validations 2021-08-04 19:45:21 +05:30
LICENSE Added license 2021-05-31 23:17:52 +05:30
package-lock.json add package.json to specify dependencies, add node_modules to .gitignore 2021-06-18 11:32:46 +02:00
package.json add package.json to specify dependencies, add node_modules to .gitignore 2021-06-18 11:32:46 +02:00
README.md extend readme 2021-06-18 11:32:46 +02:00
webserial.js Added support to change baudrate to higher values. 2021-07-18 21:50:23 +05:30

Javascript implementation of esptool

This repository contains a Javascript implementation of esptool, a serial flasher utility for Espressif chips. Unlike the Python-based esptool, esptool-js doesn't implement generation of binary images out of ELF files, and doesn't include companion tools similar to espefuse.py and espsecure.py.

esptool-js is based on Web Serial API and works in Google Chrome and Microsoft Edge, version 89 or later.

Live demo

Visit https://espressif.github.io/esptool-js/ to see this tool in action.

Testing it locally

npm install
python3 -m http.server 8008

Then open http://localhost:8008 in Chrome or Edge.

License

The code in this repository is Copyright (c) 2021 Espressif Systems (Shanghai) Co. Ltd. It is licensed under Apache 2.0 license, as described in LICENSE file.