
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@igor2017/node-latex
Advanced tools
A small wrapper for generating PDFs with LaTeX in Node.
LaTeX must be installed on your machine. You can download it here.
npm install node-latex
const latex = require('node-latex')
const fs = require('fs')
const input = fs.createReadStream('input.tex')
const output = fs.createWriteStream('output.pdf')
const pdf = latex(input)
pdf.pipe(output)
pdf.on('error', err => console.error(err))
pdf.on('finish', () => console.log('PDF generated!'))
View more examples here.
doc [ReadableStream|String] Required - The (La)TeX document you want to use.
options.inputs [String|Array] - The path (or an array of paths) to the directory which contains the assets necessary for the doc.
options.precompiled [String|Array] - The path (or an array of paths) to the directory which contains the precompiled files necessary for the doc.
options.fonts [String|Array] - The path (or an array of paths) to the directory which contains the fonts necessary for the doc (you will most likely want to use this option if you're working with fontspec).
options.cmd [String] - The command to run for your document (pdflatex, xetex, etc). pdflatex is the default.
options.args [Array] - Arguments passed to cmd. Defaults to ['-halt-on-error'].
options.passes [Number] - The number of times to run options.cmd. Some documents require multiple passes. Only works when doc is a String. Defaults to 1.
options.errorLogs [String] - The path to the file where you want to save the contents of the error log to.
MIT
FAQs
A small wrapper for LaTeX.
The npm package @igor2017/node-latex receives a total of 1 weekly downloads. As such, @igor2017/node-latex popularity was classified as not popular.
We found that @igor2017/node-latex 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.