CLI
Compress a folder
Section titled “Compress a folder”npx packfile compress <path-to-folder> <path-to-file>Compresses the contents of <path-to-folder> and saves the compressed
archive to <path-to-file>.
Decompress a file
Section titled “Decompress a file”npx packfile decompress <path-to-file> <path-to-folder>Decompresses the contents of <path-to-file> and saves the decompressed
files to <path-to-folder>.
Serve a compiled file
Section titled “Serve a compiled file”npx packfile serve <path-to-file> [port]Serves the compiled file at <path-to-file> on [port] (default 3000).
Examples
Section titled “Examples”npx packfile compress ./static ./compiled.wbnnpx packfile decompress ./compiled.wbn ./decompressednpx packfile serve ./compiled.wbn 8080