Go to file
Brian Ignacio 24e047581f first attempt to re write in typescript
add readme

add lint fix flash
2022-11-25 18:49:01 +08:00
.github/workflows Set JIRA component in workflow via environment 2021-08-09 10:54:30 +03:00
assets UX changes for file selection, validations etc. 2021-07-29 14:21:17 +05:30
src first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
targets Merge pull request #50 from LeoYan/main 2022-11-10 14:42:04 +05:30
.eslintignore first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
.eslintrc first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
.gitignore first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
.nojekyll Add .nojekyll file 2021-06-16 22:04:54 +05:30
.prettierrc first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
error.js Raise errors instead of logging them 2022-07-11 08:09:25 -07:00
ESPLoader.js first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
index.html first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
index.js first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
LICENSE Added license 2021-05-31 23:17:52 +05:30
package-lock.json first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
package.json first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
README.md first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
rollup.config.js first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
tsconfig.json first attempt to re write in typescript 2022-11-25 18:49:01 +08:00
webserial.js Use async class method syntax 2022-07-19 23:25:13 -07:00

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
npm run rollup
python3 -m http.server 8008

Then open http://localhost:8008 in Chrome or Edge. npm run rollup to build the bundle.js used in the example index.html.

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.