
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
dibs-flexwin
Advanced tools
#dibs-flexwin A wrapper for the DIBS Payment Services Flexwin API.
$ npm install dibs-flexwin
Please note the following:
var flexwin = require('dibs-flexwin');
Set a global test mode.
flexwin.testMode = true;
All methods recieve the same arguments and returns a promise.
flexwin.[methodName](options)
.then(callback);
options - object with the request parameters.
options object, for each of the available methods.callback - a callback function that receives a data object. The data object contains the answer from DIBS.
For v0.1.x only the following methods are available:
This service performs a credit and debit card check and saves the credit card information for recurring payments.
flexwin.createTicket(options)
Make a recurring payment using a ticket previously created via the createTicket service.
flexwin.authorizeTicket(options)
The second part of any transaction is the capture process. Usually this take place at the time of shipping the goods to the customer.
flexwin.captureTransaction(options)
dibs-flexwin uses the q library. It allows the following syntax:
flexwin.authorizeTicket(ticketInfo)
.then(function(data){
...
return flexwin.captureTransaction(transInfo);
})
.then(function onSuccess(data){
...
}, function onError(err){
...
});
FAQs
A simple wrapper for the DIBS Payment Services Flexwin API
We found that dibs-flexwin 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.