
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
@dima-supy-io/exceljs
Advanced tools
Fixes the problem with writing a file using streams and not using RAM based on 'exeljs'
This is a fork of the "exceljs" package, which fixes the problem with writing a file using streams and not using RAM. It solves the problem of writing large exel files
Guys from ExcelJS promise this fix will be released with next major version (v5) as it has some breaking changes
npm install @dima-supy-io/exceljs
To use streams correctly just write:
import * as fs from 'fs';
import { stream } from '@dima-supy-io/exceljs';
const output_file_name = "/test.xlsx";
const writeStream = fs.createWriteStream(output_file_name, { flags: 'w' });
const wb = new stream.xlsx.WorkbookWriter({ stream: writeStream });
const worksheet = wb.addWorksheet("test");
const headers = Array.from({length: 256}, (_, i) => i + 1).map((i) => 'test' + i);
for (let i = 0; i < 100000; i++) {
const row = headers.map((header) => header + '|' + i);
await worksheet.addRow(row).commit(); // This row will be immediately written to disk and will not clog RAM.
}
await worksheet.commit(); // This is not necessary because await wb.commit() is used, but you can also write to disk not row by row, but worksheet by worksheet.
await wb.commit();
or with Google Storage Bucket:
import { PassThrough } from 'stream';
import { stream } from '@dima-supy-io/exceljs';
import { Storage } from '@google-cloud/storage';
import WorkbookWriter = stream.xlsx.WorkbookWriter;
const writeStream = new PassThrough();
const options = {
stream: writeStream,
useStyles: true,
useSharedStrings: true,
};
const workbook = WorkbookWriter(options);
const uploadStream = new Storage().bucket('gcp-bucket').file('upload-filename').createWriteStream({
metadata: {
metadata,
},
});
writeStream.pipe(uploadStream);
const worksheet = workbook.addWorksheet("test");
const headers = Array.from({length: 256}, (_, i) => i + 1).map((i) => 'test' + i);
for (let i = 0; i < 100000; i++) {
const row = headers.map((header) => header + '|' + i);
await worksheet.addRow(row).commit(); // This row will be immediately written to GCP Storage and will not clog RAM.
}
await worksheet.commit(); // This is not necessary because await wb.commit() is used, but you can also dispatch to GCP Storage Bucket not row by row, but worksheet by worksheet.
await wb.commit();
await new Promise((resolve, reject) => {
uploadStream.on('finish', resolve);
uploadStream.on('error', reject);
});
FAQs
Fixes the problem with writing a file using streams and not using RAM based on 'exeljs'
The npm package @dima-supy-io/exceljs receives a total of 48 weekly downloads. As such, @dima-supy-io/exceljs popularity was classified as not popular.
We found that @dima-supy-io/exceljs 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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.