kisphp-cart-manager
v1.0.1
Published
Simple Cart Manager
Downloads
2
Readme
Js Cart
Simple Javascript Cart manager
Installation
npm install kisphp-cart-manager --save
Usage
var cart = Cart;
var product_1 = {
id: 1,
title: "Product 1",
description: "Product description"
// .... more product related data ....
};
id
property is mandatory
quantity
will 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