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.
<!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>