Files
adyen-web/README.md
Andrea Szollossi e71f456521 Replace Rationale section with link to the blog post
The blog post talks about why Adyen open-sourced the web integration in 
more detail than the content in the Rationale section.
2020-09-11 10:33:05 +02:00

2.9 KiB

Adyen Web

npm

Adyen Web provides you with the building blocks to create a checkout experience for your shoppers, allowing them to pay using the payment method of their choice.

You can integrate with Adyen Web in two ways:

  • Web Drop-in: an all-in-one solution, the quickest way to accept payments on your website.
  • Web Components: one Component per payment method and combine with your own payments form logic.

Prerequisites

Installation

We only provide full support when you use one of these methods of installation.

Node package manager

  1. Install the Adyen Web Node package:
npm install @adyen/adyen-web --save
  1. Import Adyen Web into your application:
import AdyenCheckout from '@adyen/adyen-web';
import '@adyen/adyen-web/dist/adyen.css';

Using a <script> tag

Modifications to the code base should be made via a pull request or by creating an issue. You can also import Adyen Web using a <script> tag, as shown in the Web Components integration guide.

Development environment

Follow these steps to run our development playground:

  • Clone this repository and navigate to the root of the project.
  • Create a .env file on your project's root folder following the example on .env.default and fill in the necessary environment variables.
  • Install all dependencies by running:
yarn install
yarn start

Branch organization

See also

We merge every pull request to the master branch. We aim to keep master in good shape, which allows us to release a new version whenever we need to.

Support

If you have a feature request, or spotted a bug or a technical problem, create an issue here. For other questions, contact our support team.

License

This repository is available under the MIT license.