Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Library for injecting tracking (spy) pixel url into Office Documents (Office Open XML)
Library for injecting tracking (spy) pixel url into Office Documents (Office Open XML).
Support formats:
npm i doctrack -S
import { DocTrack, Docx, Docm, Dotm, Dotx, Xlsx, Xlsm, Xltm, Xltx } from 'doctrack';
const inputFilePath = './input.docx';
const outputFilePath = './output.docx';
const trackingPixelUrl = 'http://localhost:5001/tracking';
// xlsx - new Xlsx, docm - new Docm and etc
const doctrack = new DocTrack(new Docx(inputFilePath), trackingPixelUrl);
// Write result document to file
await doctrack.writeResultToFile(outputFilePath);
After open result document (output.docx) with office editor will be requested url: http://localhost:5001/tracking
.
You can pass input file as buffer, stream or file:
import fsPromise from 'node:fs/promises';
// As file
const doctrack = new DocTrack(new Docx('./input.docx'), trackingPixelUrl);
// As Buffer
const fileBuffer = await fsPromise.readFile('./input.docx');
const doctrack = new DocTrack(new Docx(fileBuffer), trackingPixelUrl);
// As Stream
const fileStream = fs.createReadStream('./input.docx');
const doctrack = new DocTrack(new Docx(fileStream), trackingPixelUrl);
You get result file as buffer, stream or file:
// Write result document to file
await doctrack.writeResultToFile('./output.docx');
// Write result document to buffer
const buffer = await doctrack.writeResultToBuffer();
// Write result document to stream
const stream = await doctrack.writeResultToStream();
FAQs
Library for injecting tracking (spy) pixel url into Office Documents (Office Open XML)
The npm package doctrack receives a total of 4 weekly downloads. As such, doctrack popularity was classified as not popular.
We found that doctrack demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.