
Research
/Security News
Popular Tinycolor npm Package Compromised in Supply Chain Attack Affecting 40+ Packages
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
@benjamin-vanryseghem/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.
We found that @benjamin-vanryseghem/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.
Research
/Security News
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
Security News
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.