Create encrypted CSJ archives for ClientServeJS
CSJ (ClientServeJS) archives are encrypted files that can be loaded directly by ClientServeJS.
They provide better security for your content compared to regular ZIP files.
The CSJ format is a secure way to distribute web applications and content for use with ClientServeJS.
Key features:
To use a CSJ file with ClientServeJS:
const clientServe = new ClientServe({
persistFiles: true,
csjPassword: "your-password" // Optional
});
await clientServe.loadFromUrl("your-file.csj", "csj");
clientServe.launch();