skills/bun-guides-install-jfrog-artifactory/SKILL.md
Using bun install with Artifactory
npx skillsauth add jarle/bun-skills Bun Using bun install with ArtifactoryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
JFrog Artifactory is a package management system for npm, Docker, Maven, NuGet, Ruby, Helm, and more. It allows you to host your own private npm registry, npm packages, and other types of packages as well.
To use it with bun install, add a bunfig.toml file to your project with the following contents:
Make sure to replace MY_SUBDOMAIN with your JFrog Artifactory subdomain, such as jarred1234 and MY_TOKEN with your JFrog Artifactory token.
[install.registry]
url = "https://MY_SUBDOMAIN.jfrog.io/artifactory/api/npm/npm/_auth=MY_TOKEN"
# You can use an environment variable here
# url = "$NPM_CONFIG_REGISTRY"
$NPM_CONFIG_REGISTRYLike with npm, you can use the NPM_CONFIG_REGISTRY environment variable to configure JFrog Artifactory with bun install.
development
Using TypeScript with Bun, including type definitions and compiler options
development
Learn how to write tests using Bun's Jest-compatible API with support for async tests, timeouts, and various test modifiers
testing
Learn how to use snapshot testing in Bun to save and compare output between test runs
testing
Learn about Bun test's runtime integration, environment variables, timeouts, and error handling