Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
dataset-transaction
Advanced tools
The Transaction class is a utility that allows you to create transactions for managing changes to an object's properties. It provides methods to start, commit, and rollback transactions, as well as events to track changes.
To install and use dataset-transaction
, follow these steps:
npm install dataset-transaction
Here's a quick example demonstrating how to use the Transaction
class:
const { Transaction } = require('dataset-transaction');
// Create initial data
const data = {
name: 'John Doe',
age: 30,
email: 'johndoe@example.com'
};
// Start a transaction
const { transaction, proxy } = Transaction.start(data);
// Listen to events
transaction.on('get', () => {
console.log('Property accessed.');
});
transaction.on('set', () => {
console.log('Property set.');
});
transaction.on('delete', () => {
console.log('Property deleted.');
});
transaction.on('commit', () => {
console.log('Transaction committed.');
});
transaction.on('rollback', () => {
console.log('Transaction rolled back.');
});
transaction.on('timeout', () => {
console.log('Transaction timed out.');
});
// Access and modify the properties using the proxy
const name = proxy.name; // This will trigger 'get' event
proxy.age = 31; // This will trigger 'set' event
transaction.delete('email'); // This will trigger 'delete' event
// Commit or rollback the transaction
transaction.commit(); // This will trigger 'commit' event
transaction.rollback(); // This will trigger 'rollback' event
// Stop the transaction
transaction.stop();
FAQs
Transaction and dataset transactions
The npm package dataset-transaction receives a total of 0 weekly downloads. As such, dataset-transaction popularity was classified as not popular.
We found that dataset-transaction demonstrated a healthy version release cadence and project activity because the last version was released less than 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 UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.