0.1130.11 • Published 4 months ago

maxcso v0.1130.11

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
4 months ago

Supported platforms

OSArchitectures
Windowsx64x86
macOSarm64 (Apple Silicon)x64 (Intel)
Linuxx64x86arm v7arm64 v8

Running

You can easily run the maxcso binary for your OS from the command line like this:

npx maxcso [options..]

Examples:

npx maxcso --crc Disc.cso
npx maxcso --decompress Disc.cso -o Disc.iso
npx maxcso --format=cso1 Disc.iso -o Disc.cso

Installation

npm install --save maxcso

Usage

import maxcso from 'maxcso';

/**
 * Compress an ISO.
 */
await maxcso.compress({
  inputFilename: 'Disc.iso',
  outputFilename: 'Disc.cso',
});

/**
 * Given a compressed file, get the decompressed file's CRC32.
 */
const crc32 = await maxcso.uncompressedCrc32('Disc.cso');
console.log(crc32);
// "abcd01234"

/**
 * Decompress a CSO.
 */
await maxcso.decompress({
  inputFilename: 'Disc.cso',
  outputFilename: 'Disc.iso',
});

License

unknownbrackets' maxcso tool is licensed under the ISC license.

0.1130.9

5 months ago

0.1130.11

4 months ago

0.1130.10

5 months ago

0.1130.8

10 months ago

0.1130.7

10 months ago

0.1130.6

11 months ago

0.1130.5

12 months ago

0.1130.4

12 months ago

0.1130.3

12 months ago

0.1130.2

12 months ago

0.1130.1

12 months ago

0.1130.0

12 months ago