Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@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
The npm package @alchemized/binary-install receives a total of 1 weekly downloads. As such, @alchemized/binary-install popularity was classified as not popular.
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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.