Application bundle format for JavaScript
npm install bare-bundleApplication bundle format for JavaScript, inspired by
```
npm i bare-bundle
``
[#!hashbang]
The header length is an integer literal denoting the total length of the header. The header itself is a JSON string literal of header length bytes and has the following format:
`js`
{
"version": 0,
"id": null | "
"main": null | "
"imports": {
"
},
"resolutions": {
"
},
"addons": ["
"assets": ["
"files": {
"
"offset": number,
"length": number,
"mode": number
}
}
}
For each in files, offset provides the byte offset to the file after the header and length provides the byte length of the file.
The bundle may optionally be prefixed with a hashbang, #!`, for use with script interpreters. The hashbang is ignored during parsing.
Apache-2.0