
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
balanced-official
Advanced tools
Official Balanced Payments API Client for node.js, https://www.balancedpayments.com/docs/api
The official Node.js library for Balanced Payments.
The Balanced Payments API located here: https://www.balancedpayments.com/docs/api.
v1.x requires Balanced API 1.1.
The preferred way to install balanced for Node.js is to use the npm package manager for Node.js. Simply type the following into a terminal window:
npm install balanced-official
var balanced = require('balanced-official');
balanced.configure('api-secret-key');
var customer = balanced.marketplace.customers.create();
var card = balanced.marketplace.cards.create({
'number': '4111111111111111',
'expiration_year': '2016',
'expiration_month': '12',
'cvv': '123'
});
card.associate_to_customer(customer)
.debit(5000)
.then(function (debit) {
// save the result of the debit
}, function (err) {
// record the error message
});;
To run the tests in a terminal run
npm test
To run a specific test, you can do
node test/test.js [test name]
FAQs
Official Balanced Payments API Client for node.js, https://www.balancedpayments.com/docs/api
The npm package balanced-official receives a total of 132 weekly downloads. As such, balanced-official popularity was classified as not popular.
We found that balanced-official demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.