Cache npm packages once. Install forever — even offline.
Built by Omnikon — Developer tools for the next generation.
🌐 Website: https://pack-vault-website.vercel.app/
PackVault is an offline-first package caching and distribution CLI for JavaScript developers. Download package tarballs while online, install them later without internet access, share them across your LAN, and bootstrap entire projects from a local package vault.
# Cache packages while online
packvault sync react vite tailwindcss
# Later... no internet required
packvault install react⭐ Offline-first
🌐 LAN package sharing
📦 Project templates
🔒 Integrity verification
⚡ Peer-to-peer package sync
Modern JavaScript development assumes a reliable internet connection.
But many developers work:
- On unreliable networks
- While traveling
- In classrooms and workshops
- Behind restricted firewalls
- On multiple machines
Downloading the same dependencies repeatedly wastes bandwidth and time.
PackVault creates a reusable local package vault that works online and offline.
"PackVault saved us hours during our workshop. 50 students, one vault, zero bandwidth issues."
— Workshop Instructor, TechEducate
"Working offline is finally friction-free. This is how npm caching should work."
— Independent Developer
"Enterprise air-gapped systems? Solved. PackVault is production-ready."
— Platform Engineer, Fortune 500
npm Registry
│
▼
PackVault Sync
│
▼
Local Vault
│
┌────┴────┐
▼ ▼
Offline LAN
Install Sharing
│
▼
Peer Sync
| Feature | npm Cache | Verdaccio | PackVault |
|---|---|---|---|
| Offline installs | ✓ | ✓ | ✓ |
| Lockfile sync | Partial | Partial | ✓ |
| Peer-to-peer sync | ✗ | ✗ | ✓ |
| Offline templates | ✗ | ✗ | ✓ |
| Offline audit | ✗ | ✗ | ✓ |
| Portable exports | ✗ | Partial | ✓ |
| Classroom mode | ✗ | ✗ | ✓ |
- Sync npm metadata and tarballs into a durable local vault
- Lockfile-aware sync for npm, Yarn, and pnpm
- SemVer-aware installs from cached packages
- Runtime dependency caching
- Incremental sync with skipped duplicates
- SHA-512 and shasum integrity verification
- LAN package sharing with mDNS peer discovery
- Transparent proxy registry
- Offline fallback support
- Peer authentication tokens
- Bidirectional peer synchronization
- Peer bandwidth throttling
- Offline starter project templates
- Framework bundles (React, Vue, Svelte, Next.js, Astro, Fastify)
- Automatic dependency installation
- Project snapshots and restore
- Per-project vault configuration
- SHA-512 and shasum integrity verification
- Offline vulnerability auditing (powered by npm advisories)
- Allowlist/blocklist policies
- Cryptographic peer authentication
- Audit logging and compliance reporting
- Bundle management and caching strategies
- Vault search and introspection
- Auto-sync scheduling
- Portable export/import for team distribution
- Shell completion (bash, zsh, fish)
- Project readiness diagnostics (
doctor) - CLI-first, zero configuration for basic use
PackVault uses a simple, transparent pricing model to keep basic offline development accessible for everyone while providing powerful networking and collaboration tools for professionals and teams.
Ideal for individual developers and basic offline coding.
- Local Sync & Install
- Integrity Verification
- Lockfile Aware
- Project Templates
- Offline Security Audit
- Shell Completion
- Community Support
Perfect for teams, classrooms, and enterprise environments. Includes everything in Community, plus:
- LAN Package Sharing (mDNS)
- Peer-to-Peer Sync
- Local Registry Proxy (
packvault serve) - Bidirectional Node Connect
- Classroom Mode (1 host → N students)
- Team Collaboration Features
- Priority Support
To activate your Pro license, run:
packvault activate <your-license-key>npm install -g packvaultnpm install -g github:Omnikon-Org/PackVaultgit clone https://github.com/Omnikon-Org/PackVault
cd PackVault
npm install
npm run build
npm linkpackvault sync react vite tailwindcssOr sync directly from a lockfile:
packvault sync --from-lockfileDisconnect from the internet.
packvault install react
packvault install viteNo registry required.
Interactive wizard:
packvault createCreate directly:
packvault create react my-app
packvault create vue dashboard
packvault create svelte app
packvault create nextjs web-app
packvault create astro docs-site
packvault create fastify api-serverInstall dependencies automatically:
packvault create react my-app --installPre-cache common ecosystems:
packvault bundle frontend
packvault bundle backend
packvault bundle fullstack
packvault bundle frameworksCreate custom bundles:
packvault bundle save my-stack react vite tailwindcssShare your vault (Pro only):
packvault shareDiscover peers:
packvault discoverConnect:
packvault connect 192.168.1.25Bidirectional synchronization:
packvault connect 192.168.1.25 --bidirectionalpackvault sync react vite tailwindcsspackvault doctorContinue working offline.
packvault install reactpackvault sharepackvault sync react vite tailwindcss
packvault sync --from-lockfile
packvault sync --from-lockfile ./package-lock.json
packvault sync --concurrency 10
packvault sync my-private-pkg --registry https://npm.mycompany.com --token TOKENpackvault install react
packvault install vite
packvault install --from-package-jsonpackvault bundle save my-stack react vite tailwindcss
packvault bundle list
packvault bundle delete my-stack
packvault bundle frontendpackvault doctor
packvault doctor --project ./my-app
packvault doctor --fixpackvault search react
packvault search vite --versionspackvault audit
packvault audit --project ./my-app
packvault audit --fixpackvault export -o my-vault.tar.gz
packvault import my-vault.tar.gzpackvault policy allow react vite
packvault policy block lodash
packvault policy listpackvault snapshot --project ./my-app -o my-app.vault
packvault snapshot restore my-app.vaultpackvault classroom --host
packvault classroom --joinPrepare dependencies before traveling and continue building without internet access. Perfect for flights, trains, and remote locations.
Share one prepared vault with dozens of students and eliminate repeated downloads. No more waiting for conference WiFi.
Reduce bandwidth usage across multiple machines and local networks. Faster onboarding for new team members.
Prepare dependency vaults in advance and build applications without external network access. Compliance-ready for secure environments.
Use PackVault as a pre-cached registry in containerized builds to speed up deployments.
~/.packvault/
├── cache/
├── templates/
├── bundles/
├── database/
├── exports/
├── logs/
└── config.json
PackVault prioritizes reproducibility and security.
- SHA-512 integrity verification
- shasum verification support
- Offline vulnerability auditing (npm advisories)
- Package allowlist/blocklist enforcement
- Cryptographic peer authentication (Ed25519)
- Audit logging and compliance reporting
- No telemetry or user tracking
CREATE TABLE packages (
name TEXT NOT NULL,
version TEXT NOT NULL,
size INTEGER NOT NULL,
cache_path TEXT NOT NULL,
dependencies TEXT NOT NULL DEFAULT '{}',
dist_tarball TEXT,
integrity TEXT,
shasum TEXT,
accessed_at TEXT,
created_at TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (name, version)
);
CREATE TABLE peers (
id TEXT PRIMARY KEY,
hostname TEXT NOT NULL,
ip_address TEXT NOT NULL,
port INTEGER NOT NULL,
auth_token TEXT,
last_seen TEXT,
created_at TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE audit_log (
id INTEGER PRIMARY KEY AUTOINCREMENT,
action TEXT NOT NULL,
package_name TEXT,
peer_id TEXT,
timestamp TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP
);- Core offline caching
- Lockfile sync
- Basic integrity verification
- Project templates
- LAN package sharing (mDNS)
- Peer-to-peer sync
- Classroom mode (v1.1 - Q3 2026)
- Web dashboard (v1.1 - Q3 2026)
- Differential peer synchronization
- Enhanced registry mirroring
- Smarter dependency graph analysis
- Multi-user vault support with RBAC
- Audit compliance reports
- Desktop GUI application
- Integration with popular IDEs (VS Code, WebStorm)
- Native mobile support (React Native)
- Advanced bandwidth optimization
We welcome contributions from developers of all levels.
See CONTRIBUTING.md for guidelines.
MIT — See LICENSE
Omnikon builds developer tools for the next generation of builders.
Explore our other projects:
- IssueSwipe — Tinder-style GitHub issue discovery
- Abyss — Mobile IDE for Android development
- schema-cast — Generate TypeScript, Zod, Mongoose, and SQL from JSON schema
- DemonTech Roadmap — Interactive learning platform for web technologies
Built for developers who don't want internet availability to determine whether they can build software.