2.0.3 • Published 1 year ago

rsc-tools v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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

1 year ago

2.0.2

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago