
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
Node.js SDK for the Peachworks API, for making your own custom POS.
You'll need an access token from Peachworks.
To initialize the SDK, you'll just need that access token.
const PeachworksClient = require('peachworks');
var peachworks = new PeachworksClient({
accessToken: 'YOUR ACCESS TOKEN'
});
var c = peachworks.createConfiguration({
items: [{
id: "001",
name: "matt's famous shakshuka"
}]
});
var t = peachworks.createTransaction({
order_number: 1234,
items: [{id: "001"}],
total: 12.34,
customer_id: 1,
inclusive_tax: 0,
exclusive_tax: 0
});
t.addItem({
item_id: 'shakshuka',
quantity: 1,
price: 12.34,
});
t.record();
Congratulations! You've just recorded your first sale.
Actually, you profited in step 3.
Want to apply a discount?
transaction = {
.
.
.
discount_amount: 5.00, // amount of discount, required
discount_id: 'citywide_special', // id of this discount, required
discount_quantity: 1, // optional, defaults to 1
.
.
.
}
Special thanks to Matt Craig of Peachworks for his assistance.
FAQs
Peachworks SDK
We found that peachworks 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.