A cli tool by @bjesuiter which takes one or more binaries for different platforms and wraps them into an npm package for distribution. Can also be used via bin2npm package on npmjs.org.
Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
bin2npm
A helper cli which takes one or more binaries for different platforms and wraps them into an npm package for distribution.
Installation via deno
Install from deno.land/x (installs exactly this url, so it will always run the latest version of itself!)
deno install --allow-read='.' --allow-write='.' -n bin2npm https://deno.land/x/bin2npm/src/cli.tsWrite a config (TODO @bjesuiter)
Installation via npm
Global Installation: npm i -g bin2npm
Local Installation: npm i -D bin2npm
Usage (for both deno & npm)
- Write a config file (TODO @bjesuiter)
- Run
bin2npm=> It will search for all bin2npm.toml files inside your CWD - Finished! If your config was correct, then your output npm package should be in your configured output dir!
If you have any issues, please open an Issue at: https://github.com/bjesuiter/bin2npm/issues
For Developers of this package
Use asset_builder from (https://deno.land/x/asset_builder) to have the template folder available to the deno cli.
Run deno task pack-assets to pack the files in /template into src-gen/assets.ts
IMPORTANT: This MUST also be done for the deno variant, otherwise the package will not work when installed from deno.land/x!
Building the npm package
- Increase versions:
- In
cli.tsfor the bin2npm cli - Of target npm package by updating the version in
./bin2npm.toml
- In
- Run
deno task compile - Run
deno task startand choose the top-level bin2npm.toml => This runs bin2npm on the compiled output of itself! (Great, isn’t it?!?) - Run
deno task publish-npmto publish on npm
Changelog
0.0.3 - 2023-06-10
- fix missing assets for both deno.land/x and npm, by inlining the assets as base64
0.0.2 - 2023-06-10
- fixing stdin of wrapped child processes, was not attached to process.stdin before, so selecting the config to use was not possible!
0.0.1 - 2023-06-10
- initial release