Go to file
Adwait ae891744ea
Merge pull request #16 from espressif/fix_disconnect_connect_issue
Fix the issue for connect after disconnect
2022-02-25 15:04:54 +05:30
.github/workflows Create initial CI environment 2021-07-18 21:54:49 +05:30
assets UX changes for file selection, validations etc. 2021-07-29 14:21:17 +05:30
node_modules Added dependencies for gh-pages 2021-05-31 23:20:33 +05:30
.gitignore add package.json to specify dependencies, add node_modules to .gitignore 2021-07-18 21:54:49 +05:30
.nojekyll Add .nojekyll file 2021-06-16 22:04:54 +05:30
ESPLoader.js Fix the C3 connect issue and getting package version 2022-02-24 16:11:29 +05:30
index.html Added check for unsupported safari browser 2021-08-11 15:42:06 +05:30
index.js Fix the issue for connect after disconnect 2022-02-24 16:38:07 +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-07-18 21:54:49 +05:30
package.json add package.json to specify dependencies, add node_modules to .gitignore 2021-07-18 21:54:49 +05:30
README.md extend readme 2021-07-18 21:54:49 +05:30
webserial.js rollback webserial.js changes, failing to connect 2022-02-21 22:45:17 +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.