2.0.3 • Published 6 months ago

rsc-tools v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

rsc-tools

Library for packing and unpacking .rsc files

Documentation NPM

Example Usage

import * as fs from "node:fs";
import { packRsc, unpackRsc } from "rsc-tools";

const file = fs.readFileSync("./data.rsc");
const rsc = unpackRsc(file);
rsc[0].path += ".alt";
const newFile = Buffer.from(packRsc(rsc));
fs.writeFileSync("./data.rsc", newFile);
2.0.3

6 months ago

2.0.2

6 months ago

2.0.1

6 months ago

2.0.0

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago