All Projects → hanzoai → Checkout.js

hanzoai / Checkout.js

Licence: other
💳 Quickly capture payments with the best checkout flow for crowdfunding and product launches.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Checkout.js

Elements Examples
Stripe Elements examples.
Stars: ✭ 874 (+850%)
Mutual labels:  payments, form
Ecommerce Laravel Bootstrap
Responsive, Multi-Vendor, MultiLanguage Online Store Platform (shopping cart solution)
Stars: ✭ 99 (+7.61%)
Mutual labels:  ecommerce, payments
Connect Java Sdk
Java client library for the Square Connect v2 API
Stars: ✭ 36 (-60.87%)
Mutual labels:  ecommerce, payments
Digota
ecommerce microservice
Stars: ✭ 382 (+315.22%)
Mutual labels:  ecommerce, payments
Gopay
💰 Integrace Gopay pro Nette Framework
Stars: ✭ 68 (-26.09%)
Mutual labels:  ecommerce, payments
Fullstack Shopping Cart
MERN stack shopping cart, written in TypeScript
Stars: ✭ 82 (-10.87%)
Mutual labels:  ecommerce
Stripe Payments Demo
Sample store accepting universal payments on the web with Stripe Elements, Payment Request, Apple Pay, Google Pay, Microsoft Pay, and the PaymentIntents API. 💳🌍✨
Stars: ✭ 1,287 (+1298.91%)
Mutual labels:  payments
Legit
input validation framework
Stars: ✭ 81 (-11.96%)
Mutual labels:  form
Vue Rawmodel
RawModel.js plugin for Vue.js v2. Form validation has never been easier!
Stars: ✭ 79 (-14.13%)
Mutual labels:  form
Gatsby Demo Store
Elastic Path + Gatsby powered online store
Stars: ✭ 91 (-1.09%)
Mutual labels:  ecommerce
Ecommerce Icons
Ícones de diversos players relacionados a e-commerce
Stars: ✭ 90 (-2.17%)
Mutual labels:  ecommerce
Ryal
🏵 An e-commerce library for elixir; just to save you some pain, we're still in construction, so star us instead or donate!
Stars: ✭ 87 (-5.43%)
Mutual labels:  ecommerce
Smartstore
Open Source ASP.NET Core Enterprise eCommerce Shopping Cart Solution
Stars: ✭ 82 (-10.87%)
Mutual labels:  ecommerce
Module Shop Mini Program
一个基于 .NET Core构建的简单、跨平台、模块化的商城系统
Stars: ✭ 89 (-3.26%)
Mutual labels:  ecommerce
Bigcommerce For Wordpress
A headless commerce integration for WordPress, powered by BigCommerce
Stars: ✭ 82 (-10.87%)
Mutual labels:  ecommerce
Multipicker
Form styling plugin for jQuery
Stars: ✭ 90 (-2.17%)
Mutual labels:  form
Laravel Ecommerce Iyzico
Iyzico intigrated e-Commerce system that could be developed easily in simple level.
Stars: ✭ 81 (-11.96%)
Mutual labels:  ecommerce
Openfintech
Opensource FinTech standards & payment provider data
Stars: ✭ 87 (-5.43%)
Mutual labels:  payments
Talquei
🤖 Vue components to build webforms looking like a conversation
Stars: ✭ 90 (-2.17%)
Mutual labels:  form
Antd Jsonschema Form
Aother ui implement for react-jsonschema-form
Stars: ✭ 86 (-6.52%)
Mutual labels:  form

Checkout.js

npm build dependencies downloads license chat

Easy to use checkout powered by Hanzo

Checkout.js is an easy to use checkout widget powered by Hanzo. It makes it possible for businesses to begin taking pre-orders in minutes.

Preview

Checkout.js Image

Install

$ npm install checkout.js

Usage

Set the href of your button to #checkout.

<a class="btn" href="#checkout">Buy Now</a>

Configure the checkout widget however you'd like.

<script src="https://cdn.rawgit.com/hanzoai/checkout.js/v2.1.21/checkout.min.js"></script>
<script>
  var {Checkout, User, Order, Product} = Hanzo

  // Create user (pre-populated in form fields)
  var user = new User({
    email:     '[email protected]',
    firstName: 'Joe',
    lastName:  'Fan'
  })

  // Create order
  var order = new Order({
    currency: 'usd',
    items: [
      new Product({id:   '84cRXBYs9jX7w', quantity: 1}),
      new Product({slug: 'doge-shirt',    quantity: 1}),
    ]
  })

  // Instantiate checkout widget.
  var checkout = new Checkout('your access token', {
    social: {
      facebook:   'suchtees',
      googlePlus: 'suchtees',
      twitter:    'suchtees',
  })

  // Open widget. This can be called multiple times, overriding order or user.
  checkout.open('#checkout', user, order)
</script>

Examples

You can find more examples here.

License

BSD

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].