0.0.3 • Published 6 years ago

fakeproductpackage v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

fakeProductsPackage

create your fake products

Installation

npm i fakeProductsPackage

Usage

For use the fake Products

var fakeproducts = require('fakeProductsPackage');
console.log('products', fakeproducts.all()); // outputs all products
fakeproducts.getByCode(1); // return product with code number 1
console.log('products', fakeproducts.add(
  {name: "mele verdi", price: 0.6, amount: 27})); // add new product
fakeproducts.delete(1); // delete products with code number 1
console.log('products', fakeproducts.update(2,
    {name: "pesca", price: 0.70, amount: 50})); // modify product with code number 2
fakeproducts.buy(3,'pippo');// User 'pippo' buy a product number 3 using a token('pippo'): the quantity decreases and sales increase;
fakeproducts.reset(); // reset fake products array;