
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
node-adyen-encrypt
Advanced tools
[DEPRECATED] This module is deprecated since the original Adyen CSE project is deprecated and this encrytion method will not work with latest versions of Adyen SDK. Please use the official Adyen Web Components for Credit Card integration.
A NodeJS helper to encrypt data with the Adyen CSE
You will need a Adyen Key
npm install node-adyen-encrypt
const adyenEncrypt = require('node-adyen-encrypt')(25);
// this will import the 0_1_25 version
const adyenEncrypt = require('node-adyen-encrypt')(24);
// this will import the 0_1_24 version
const adyenEncrypt = require('node-adyen-encrypt')(23);
// this will import the 0_1_23 version
const adyenEncrypt = require('node-adyen-encrypt')(22);
// this will import the 0_1_22 version
const adyenEncrypt = require('node-adyen-encrypt')(24);
//this will import the 0_1_24 version
const adyenKey = "your key as retrieved from the Adyen Customer Area Web Service User page";
const options = {};
const cardData = {
number : cardNumber, // 'xxxx xxxx xxxx xxxx'
cvc : cvc, //'xxx'
holderName : holderName, // 'John Doe'
expiryMonth : expiryMonth, //'MM'
expiryYear : expiryYear, // 'YYYY'
generationtime : generationtime // new Date().toISOString()
};
const cseInstance = adyenEncrypt.createEncryption(adyenKey, options);
cseInstance.validate(cardData);
const dataEncrypted = cseInstance.encrypt(cardData);
👤 Danilo Pedrosa
Give a ⭐️ if this project helped you!
FAQs
Adyen encryption for Node.js.
We found that node-adyen-encrypt 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.