
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Node.js module to generate PDFs in commercial tags formats and ready to print
npm install --save print-tag
// See all avaible formats in: https://github.com/albertosouza/print-tag/blob/master/lib/formats.js
var pt = new PrintTicket('pimaco_6187');
// write in test/results/output.pdf , see PDFkit documentation
pt.doc.pipe( fs.createWriteStream('test/results/output.pdf') );
pt.doc.fontSize(6);
pt.makeTickets({
count: data.length
}, function onSetOneTag(i, marginLeft, marginTop, size, next) {
// write something in tag area
pt.doc.text(data[i].name, marginLeft, marginTop, size);
// ticket box
pt.doc.lineWidth(0.1);
pt.doc.rect(marginLeft, marginTop, size.width, size.height).stroke();
// run next function
next();
}, function afterSetAllTags(){
// end, required for end / finish the PDF file
pt.doc.end();
});
pt.doc.on('end', function(){
done();
});
Please help with more formats in: https://github.com/albertosouza/print-tag/blob/master/lib/formats.js
MIT © Alberto Souza
FAQs
Simple module to generate PDF tags for print in comercial formats
The npm package print-tag receives a total of 31 weekly downloads. As such, print-tag popularity was classified as not popular.
We found that print-tag 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.