npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@astronautlabs/twine

v1.1.3

Published

A tool for distributing prebuilt binaries for Node.js native addons

Downloads

19

Readme

@/twine

NPM

A tool for distributing binary artifacts for Node.js native addons.

Introduction

Twine is entirely convention based which allows the tool to be extremely minimal and easy to set up. The artifact uploaded/downloaded will be based on inferred properties of the environment Twine is run from.

Artifacts are named in the following manner:

// pkg is your package JSON
// buildType is Debug or Release
`${pkg.name}@${pkg.version}.${process.platform}-${process.arch}-${buildType}.zip`

Each artifact consists of a Zip archive of the contents of build/Debug or build/Release, depending on the build type.

Twine will also automatically skip building when you run npm install from within your working copy during development.

Usage

Add the following scripts to your package.json:

"scripts": {
    "install": "twine install",
    "twine:publish": "twine publish",
    "build:native": "<your native build command here>"
}

Also add a "twine" section to your package.json:

"twine": {
    "distributionUrl": "https://my-downloads.example.com",
    "moduleName": "my-native-addon"  // ie: as in build/Release/my-native-addon.node
}

To publish an artifact, first build your module:

npm run build:native

You would then want to do any testing or other validation on the resulting build.

Add a .env file in your project root, or provide the equivalent environment variables to the publish command. Important: Make sure .env is excluded from version control and publishing using .gitignore AND .npmignore.

S3_ACCESS_KEY_ID=...
S3_SECRET_ACCESS_KEY=...
S3_BUCKET=my-bucket-name
S3_ENDPOINT=https://my-s3-endpoint.example.com

Note, if you are using AWS S3, S3_ENDPOINT should be https://s3.<region>.amazonaws.com.

  • Do not include the bucket name in this URL.

Now publish your build using twine:

npm run twine:publish

Using subfolders

If you wish to publish artifacts into a specific folder (and download from that folder), you can do so by modifying your twine.distributionUrl and specifying the S3_FOLDER environment variable while publishing, like so:

"twine": {
    "distributionUrl": "https://my-downloads.example.com/my-project",
    "moduleName": "my-project"
}
S3_FOLDER=my-project

This works with multiple levels of folders, for instance S3_FOLDER=my-org/my-project/my-branch provided that you ensure distributionUrl matches.

Distributing artifacts inline

Twine supports distributing artifacts inline within your NPM package. Twine will look for artifacts within the .twine folder, and if a matching one exists, it will be unpacked to the appropriate location within the build/ folder during install-time.

You can download all existing prebuilt artifacts from your distribution server using twine pack. If you wish to enforce that only packed artifacts will be used at installation time, you can set the twine.packOnly property in your package.json to true.