🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@bilig/xlsx

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bilig/xlsx

@bilig/xlsx ZIP, address, streaming formula-cache, and source-preserving patch primitives for Bilig.

latest
Source
npmnpm
Version
0.164.11
Version published
Maintainers
1
Created
Source

@bilig/xlsx

@bilig/xlsx provides ZIP, address, and source-preserving patch primitives used by Bilig runtime packages. This package does not depend on SheetJS or the xlsx CDN tarball.

Source-Preserving Literal Patches

Use exportXlsxSourceLiteralPatchesToFileAsync when a service needs to apply scalar cell edits to an existing XLSX package while preserving untouched package parts and avoiding full-source reads:

import { exportXlsxSourceLiteralPatchesToFileAsync } from '@bilig/xlsx'

await exportXlsxSourceLiteralPatchesToFileAsync({
  source: fileBackedXlsxReader,
  outputPath: './patched.xlsx',
  sheetNames: ['Inputs'],
  patches: [{ sheetName: 'Inputs', address: 'B3', value: 96000 }],
})

The file-backed source only needs byteLength and readRange(start, end) for the streaming patch path. readBytes() is a fallback, not the normal path.

Keywords

bilig

FAQs

Package last updated on 29 Jun 2026

Did you know?

Socket

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.

Install

Related posts