jjhub

(★ 9)

jj-native software forge — repos, issues, landings, workspaces, CI, agents. Self-hosted in one binary.

File Explorer

  • .env.example
  • .gitignore
  • bun.lock
  • bunfig.toml
  • CONTRIBUTING.md
  • docker-compose.yml
  • Dockerfile
  • Dockerfile.dev
  • LICENSE
  • package.json
  • README.md
  • tsconfig.json

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

bun install

View Details ▼

Install JavaScript dependencies for a project from `package.json`.

bun {{[i|install]}}

Install all dependencies listed in `package.json`:

bun {{[i|install]}} {{package_name}}@{{version}}

Install a single package (this is an alias for `bun add`):

bun {{[i|install]}} {{[-g|--global]}} {{package_name}}

Install a package globally:

🔍

bun run

View Details ▼

Execute a JavaScript/TypeScript file, or a script from `package.json`.

bun run {{script_name}}

Run a script defined in `package.json`:

bun run {{path/to/file.ts}}

Run a JavaScript or TypeScript file directly:

bun run --watch {{path/to/file.ts}}

Run a file in "watch" mode (restarts automatically when the file changes):

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

sdk

View Details ▼

Manage parallel versions of multiple Software Development Kits.
Supports Java, Groovy, Scala, Kotlin, Gradle, Maven, Vert.x and many others.

sdk install {{sdk_name}} {{sdk_version}}

Install an SDK version:

sdk use {{sdk_name}} {{sdk_version}}

Use a specific SDK version for the current terminal session:

sdk current {{sdk_name}}

Show the stable version of any available SDK:

// repository documentation