An ecommerce toolkit

for turning any website into a store

Reflow is a free JavaScript library that you can integrate with any website. It adds functionality like product listings and shopping carts, turning your site into a fully working online store. Just link your PayPal and/or Stripe accounts, and start selling.

Sign up Integration Guide
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Shopping Cart</title>

    <!-- Include the Reflow CSS -->
    <link href="https://cdn.reflowhq.com/v2/toolkit.min.css" rel="stylesheet" />

  </head>

  <body>

    <!-- Add a shopping cart to this page -->
    <div data-reflow-type="shopping-cart"></div>

    <!-- Include the Reflow JS. Pass the data-reflow-store
         attribute to link to your store. -->
    <script src="https://cdn.reflowhq.com/v2/toolkit.min.js" 
      data-reflow-store="267418190" defer></script>

  </body>
</html>

Examples

Full Online Store

Demonstrates how Reflow can be used to build an entire online store with just a few lines of HTML.

Demo Code
Shopping Cart

Fully featured shopping cart that lets users edit product quantity, fill in shipping info and checkout via Stripe or PayPal.

Demo Code
Product Page

Product page with a media gallery, lightbox, add to cart and description.

Demo Code
Product List

Display a simple list of all products in your store. Displays a list of product photos, names, prices and descriptions.

Demo Code