Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jessepollak/card
:credit_card: make your credit card form better in one line of code
https://github.com/jessepollak/card
coffeescript credit-card css javascript jquery payments
Last synced: 6 days ago
JSON representation
:credit_card: make your credit card form better in one line of code
- Host: GitHub
- URL: https://github.com/jessepollak/card
- Owner: jessepollak
- License: mit
- Created: 2013-12-27T02:31:51.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2023-06-12T08:56:41.000Z (over 1 year ago)
- Last Synced: 2025-01-01T16:38:45.111Z (11 days ago)
- Topics: coffeescript, credit-card, css, javascript, jquery, payments
- Language: SCSS
- Homepage:
- Size: 2.17 MB
- Stars: 11,673
- Watchers: 236
- Forks: 1,476
- Open Issues: 65
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fintech - Card - a better credit card form in one line of code (Credit card forms)
- awesome - jessepollak/card - :credit_card: make your credit card form better in one line of code (SCSS)
- awesome - jessepollak/card - :credit_card: make your credit card form better in one line of code (SCSS)
- awesome-javascript - card - make your credit card form better in one line of code - ★ 10114 (Form Widgets)
- StarryDivineSky - jessepollak/card
README
![npm](https://img.shields.io/npm/v/card)
# Card - check out the **[demo](https://jessepollak.github.io/card)**
### A better credit card form in one line of code
Card will take *any* credit card form and make it the best part of the checkout process (without you changing anything). Everything is created with pure CSS, HTML, and Javascript — no images required.
![card](http://i.imgur.com/qG3TenO.gif)
## Usage (without jQuery)
To use, you'll need to include the Card JavaScript files into your HTML, no CSS link is necessary as the JavaScript file does this for you. You can find the necessary file at `/dist/card.js` and include it in your HTML like so.
```html
```
Once you've included those files, you can initialize Card.
```javascript
var card = new Card({
// a selector or DOM element for the form where users will
// be entering their information
form: 'form', // *required*
// a selector or DOM element for the container
// where you want the card to appear
container: '.card-wrapper', // *required*formSelectors: {
numberInput: 'input#number', // optional — default input[name="number"]
expiryInput: 'input#expiry', // optional — default input[name="expiry"]
cvcInput: 'input#cvc', // optional — default input[name="cvc"]
nameInput: 'input#name' // optional - defaults input[name="name"]
},width: 200, // optional — default 350px
formatting: true, // optional - default true// Strings for translation - optional
messages: {
validDate: 'valid\ndate', // optional - default 'valid\nthru'
monthYear: 'mm/yyyy', // optional - default 'month/year'
},// Default placeholders for rendered fields - optional
placeholders: {
number: '•••• •••• •••• ••••',
name: 'Full Name',
expiry: '••/••',
cvc: '•••'
},masks: {
cardNumber: '•' // optional - mask card number
},// if true, will log helpful messages for setting up Card
debug: false // optional - default false
});
```
### Installing card from bowerIf you're using bower, you can install card.js with:
bower install card --save
### Installing card from npm
If you're using npm, you can install card.js with:
npm install --save card
var $ = require("jquery");
// The current card.js code does not explictly require jQuery, but instead uses the global, so this line is needed.
window.jQuery = $;
var card = require("card");### Using multiple inputs for one field
Card can be used in forms where you have multiple inputs that render to a single field (i.e. you have a first and last name input). To use Card with this functionality, just pass in a selector that selects the fields in the correct order. For example,
```html
var card = new Card({
form: 'cc-form',
container: '.card-wrapper',formSelectors: {
nameInput: 'input[name="first-name"], input[name="last-name"]'
}
});```
### Rendering with different initial card placeholders
Card renders with default placeholders for card `name`, `number`, `expiry`, and `cvc`. To override these placeholders, you can pass in a `placeholders` object.
```html
var card = new Card({
form: 'cc-form',
container: '.card-wrapper',placeholders: {
number: '**** **** **** ****',
name: 'Arya Stark',
expiry: '**/****',
cvc: '***'
}
});```
### Translation
To render the card with the strings in a different language, you can pass in a `messages` object.
```html
var card = new Card({
form: 'cc-form',
container: '.card-wrapper',messages: {
validDate: 'expire\ndate',
monthYear: 'mm/yy'
}
});```
## Using with jQuery
To use with jQuery, you'll need to include the `jquery.card.js` file into your HTML. You can find the necessary file at `/dist/jquery.card.js` and include it in your HTML like so.
```html
```
Once you've included those files, you can initialize Card with jQuery.
```javascript
$('form').card({
// a selector or DOM element for the container
// where you want the card to appear
container: '.card-wrapper', // *required*// all of the other options from above
});```
## Using with other javascript librariesCard has wrappers that make it easy to use with other javascript libraries:
### Angular 1.x
* [angular-card](https://github.com/gavruk/angular-card)
### Angular 2+
* [ngx-card](https://github.com/ihym/ngx-card)
### Ember
* [ember-credit-card](https://github.com/esbanarango/ember-credit-card)
### React
* [react-credit-card](https://github.com/JohnyDays/react-credit-card)
* [card-react](https://github.com/shatran/card-react)
* [react-plastic](https://github.com/armsteadj1/react-plastic) - static CSS only version.### Vue
For use with VueJs, install card.js from npm:
```bash
npm install card --save```
Add in your component an Div with class 'card-wrapper', just pass in a selector that selects the fields in the correct order. Import the component card.js and add the object in instance mounted like this example:
```html
import * as Card from "card";
export default {
name: "Form CreditCard",
mounted() {
new Card({
form: "form#cc-form",
container: ".card-wrapper",
formSelectors: {
numberInput: "input#cc-number",
expiryInput: "input#cc-expiration",
cvcInput: "input#cc-cvv",
nameInput: "input#cc-name"
},
width: 270,
formatting: true,
placeholders: {
number: "•••• •••• •••• ••••",
name: "Nome Completo",
expiry: "••/••",
cvc: "•••"
}
});
},
}```
## Development
To contribute, follow this steps:
```bash
$ git clone --recursive https://github.com/jessepollak/card.git
$ cd card
$ git submodule init && git submodule update
$ npm install
$ npm run development
```Now, if you go to localhost:8080/example in your browser, you should see the demo page.
## Places using Card
Card is used in the wild in these places:
* [InspectAll](http://www.inspectall.com/)
* [PennyWhale](https://www.pennywhale.com/)
* [MakeSpace](https://www.makespace.com/)
* [Blumpa](http://www.blumpa.com/)
* [CourseLoads](http://www.courseloads.com/)
* [PubNub](http://pubnub.com/)
* [GigSalad](https://www.gigsalad.com)
* [Boligninja](http://www.boligninja.dk)
* [EasyCarros](http://www.easycarros.com/)
* [Sintelle](http://www.sintelleparapharmacie.com/)
* [Wevorce](http://wevorce.com/)
* [PayumServer](https://github.com/Payum/PayumServer)
* [Paribus](https://paribus.co)
* [Bizzabo](https://www.bizzabo.com)
* [Tortuba](https://www.tortuba.com)
* [Netlify](https://www.netlify.com)
* [The Spice House](https://www.thespicehouse.com/)
* [Touts](https://www.touts.com.br/)
* [Ryman Limited](http://www.ryman.co.uk)
* [Robert Dyas](http://www.robertdyas.co.uk)
* [ROKA](https://www.rokahub.com)
* [LeSalon](https://lesalon.com)
* [Kenyan Directorate Of Immigration And Citizen Service](https://dis.ecitizen.go.ke)Are you using Card in production? If so, we'd love to link to you from this page. Open a PR or drop [@jessepollak](http://twitter.com/jessepollak) a line on [Twitter](http://twitter.com/jessepollak) and we'll add you right away!
## Project scope
The project scope is to improve the capture of payment cards on websites. Issues and fixes related to the user interface and validating of payment cards are in scope.
For questions on how to use Card in your particular project, please ask on Stack Overflow or similar forum.
## Donations
If you'd like to donate to help support development of Card, send Bitcoin directly to `17NUKd3v7GWben18kGhmFafa4ZpWrXpQSC` or through Coinbase [here](https://coinbase.com/jessepollak).