kisphp-cart-manager
v1.0.1
Published
Simple Cart Manager
Readme
Js Cart
Simple Javascript Cart manager
Installation
npm install kisphp-cart-manager --saveUsage
var cart = Cart;
var product_1 = {
id: 1,
title: "Product 1",
description: "Product description"
// .... more product related data ....
};
idproperty is mandatory
quantitywill be added automatically
Add product to cart
// quantity is an integer
cart.add(product_1, quantity);subtract quantity from cart
// if quantity > available quantity in cart, then it will delete the product from cart
cart.subtract(product_1, quantity);remove product from cart
cart.remove(product);See Example for a demo
