Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rymcu/rymcu-ihex
nodejs typescript Intel HEX parser and writer @rymcu
https://github.com/rymcu/rymcu-ihex
Last synced: 8 days ago
JSON representation
nodejs typescript Intel HEX parser and writer @rymcu
- Host: GitHub
- URL: https://github.com/rymcu/rymcu-ihex
- Owner: rymcu
- Created: 2020-09-20T10:09:10.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T05:28:32.000Z (over 3 years ago)
- Last Synced: 2023-03-05T15:19:56.330Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 4.65 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Intel HEX parser and writer
## install
```bash
npm install rymcu-ihex@latest
```## code
```js
const ryhex = require("rymcu-ihex")
const ihex = new ryhex.IHex(false)
// hex buffer
let hex_buffer = ihex.extract_data()
```