
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Another PDF invoice generator
# Using npm
npm install --save nodeice
# Using yarn
yarn add nodeice
const Invoice = require("nodeice");
// Create the new invoice
let myInvoice = new Invoice({
config: {
template: __dirname + "/template/index.html"
, tableRowBlock: __dirname + "/template/blocks/row.html"
}
, data: {
currencyBalance: {
main: 1
, secondary: 3.67
}
, invoice: {
number: {
series: "PREFIX"
, separator: "-"
, id: 1
}
, date: "01/02/2014"
, dueDate: "11/02/2014"
, explanation: "Thank you for your business!"
, currency: {
main: "XXX"
, secondary: "ZZZ"
}
}
, tasks: [
{
description: "Some interesting task"
, unit: "Hours"
, quantity: 5
, unitPrice: 2
}
, {
description: "Another interesting task"
, unit: "Hours"
, quantity: 10
, unitPrice: 3
}
, {
description: "The most interesting one"
, unit: "Hours"
, quantity: 3
, unitPrice: 5
}
]
}
, seller: {
company: "My Company Inc."
, registrationNumber: "F05/XX/YYYY"
, taxId: "00000000"
, address: {
street: "The Street Name"
, number: "00"
, zip: "000000"
, city: "Some City"
, region: "Some Region"
, country: "Nowhere"
}
, phone: "+40 726 xxx xxx"
, email: "me@example.com"
, website: "example.com"
, bank: {
name: "Some Bank Name"
, swift: "XXXXXX"
, currency: "XXX"
, iban: "..."
}
}
, buyer: {
company: "Another Company GmbH"
, taxId: "00000000"
, address: {
street: "The Street Name"
, number: "00"
, zip: "000000"
, city: "Some City"
, region: "Some Region"
, country: "Nowhere"
}
, phone: "+40 726 xxx xxx"
, email: "me@example.com"
, website: "example.com"
, bank: {
name: "Some Bank Name"
, swift: "XXXXXX"
, currency: "XXX"
, iban: "..."
}
}
});
// Render invoice as HTML and PDF
myInvoice.toHtml(__dirname + "/my-invoice.html", (err, data) => {
console.log("Saved HTML file");
}).toPdf(__dirname + "/my-invoice.pdf", (err, data) => {
console.log("Saved pdf file");
});
// Serve the pdf via streams (no files)
require("http").createServer((req, res) => {
myInvoice.toPdf({ output: res });
}).listen(8000);
There are few ways to get help:
Invoice(options)This is the constructor that creates a new instance containing the needed methods.
options: The options for creating the new invoice:config (Object):
template (String): The HTML root template.data (Object):
currencyBalance (Object):
main (Number): The main balance.secondary (Number): The converted main balance.tasks (Array): An array with the tasks (description of the services you did).invoice (Object): Information about invoice.seller (Object): Information about seller.buyer (Object): Information about buyer.initTemplates(callback)Inits the HTML templates.
callback: The callback function.toHtml(output, callback)Renders the invoice in HTML format.
output: An optional path to the output file.callback: The callback function.Nodeice instance.convertToSecondary(input)Converts a currency into another currency according to the currency balance provided in the options
input: The number that should be convertedtoPdf(options, callback)Renders invoice as pdf
Object|String|Stream options: The path the output pdf file, the stream object, or an object containing:
output (String|Stream): The path to the output file or the stream object.
converter (Object): An object containing custom settings for the phantom-html-to-pdf.
Function callback: The callback function
Have an idea? Found a bug? See how to contribute.
I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).
However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:
Starring and sharing the projects you like :rocket:
—I love books! I will remember you after years if you buy me one. :grin: :book:
—You can make one-time donations via PayPal. I'll probably buy a
coffee tea. :tea:
—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! :heart:
If you are using this library in one of your projects, add it in this list. :sparkles:
bloggify-shopFAQs
Another PDF invoice generator
We found that nodeice demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.