
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
GRF is an archive file format that support lossless data compression used on Ragnarok Online to store game assets. A GRF file may contain one or more files or directories that may have been compressed (deflate) and encrypted (variant of DES).
npm install grf-loader
import {GrfNode} from 'grf-loader';
import {openSync} from 'path';
const fd = openSync('path/to/data.grf', 'r');
const grf = new GrfNode(fd);
// Start parsing the grf.
await grf.load();
import {GrfBrowser} from 'grf-loader';
const blob = document.querySelector('input[type="file"]').files[0];
const grf = new GrfBrowser(blob);
// Start parsing the grf
await grf.load();
Once the GRF is loaded, it's possible to list all files included inside it
grf.files.forEach((entry, path) => {
console.log(path);
});
Once the GRF is loaded, it's possible to extract all files you need
const {data, error} = await grf.getFile('data\\clientinfo.xml');
// data is a Uint8Array data, so we transform it into text
const content = String.fromCharCode.apply(null, data);
console.log(content);
FAQs
A loader for GRF files (Ragnarok Online game file)
We found that grf-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.