Skip to content

muhamadluthfiam/generate-product

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

generateProduct Documentation

Overview

The generateProduct function is used to generate random product data and save it to a JSON file. It takes a single parameter total, which specifies the number of products to generate.

Syntax

generateProduct(total)

Parameters

  • total: The number of products to generate. Must be a positive integer.

Return Value

An array of objects representing the generated products. Each object contains the following properties:

  • id: The unique identifier of the product.
  • name: The name of the product.
  • price: The price of the product in Indonesian Rupiah (IDR).
  • category: The category of the product.
  • priceFormatted: The formatted price of the product in Indonesian Rupiah (IDR).

Usage

import { generateProduct } from './path/to/generateProduct.js';

// Generate 10 products
const products = generateProduct(10);

Example

import { generateProduct } from './path/to/generateProduct.js';

// Generate 5 products
const products = generateProduct(5);

console.log(products);
// Output:
// [
//   {
//     id: 1,
//     name: 'Product 1',
//     price: 87,
//     category: 'Electronics',
//     priceFormatted: 'Rp 87'
//   },
//   {
//     id: 2,
//     name: 'Product 2',
//     price: 55,
//     category: 'Clothing',
//     priceFormatted: 'Rp 55'
//   },
//   ...
// ]

File Output

The generated product data will be saved to a JSON file named products.json.

Error Handling

If an error occurs while writing the file, an error message will be logged to the console.

Lisensi

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published