Socket
Socket
Sign inDemoInstall

@pearjs/bundle

Application bundle format for 🍐.js


Version published
Maintainers
4

Readme

Source

@pearjs/bundle

Application bundle format for :pear:.js, inspired by https://github.com/electron/asar.

npm i @pearjs/bundle

Format

[#!hashbang]
<header length><header><...files>

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:

{
  "version": 0,
  "main": "<path>" | null,
  "imports": {
    "<from>": "<to>"
  },
  "files": {
    "<path>": {
      "offset": number,
      "length": number
    }
  }
}

For each <path> 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.

License

Apache-2.0

FAQs

Last updated on 10 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc