
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@alchemized/binary-install
Advanced tools
Install .tar.gz binary applications via npm
Ruthlessly copied from cloudflare/binary-install and removed functionality of saving binary to bin
directory to support jlink binaries. And translated to Typescript.
This library provides a single class Binary
that takes a download url and some optional arguments. You must provide either name
or installDirectory
when creating your Binary
.
option | decription |
---|---|
name | The name of your binary |
installDirectory | A path to the directory to install the binary |
If an installDirectory
is not provided, the binary will be installed at your OS specific config directory. On MacOS it defaults to ~/Library/Preferences/${name}-nodejs
After your Binary
has been created, you can run .install()
to install the binary, and .run()
to run it.
This is meant to be used as a library - create your Binary
with your desired options, then call .install()
in the postinstall
of your package.json
, .run()
in the bin
section of your package.json
, and .uninstall()
in the preuninstall
section of your package.json
. See this example project to see how to create an npm package that installs and runs a binary using the Github releases API.
FAQs
Install binary applications via npm
We found that @alchemized/binary-install demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.