Posts

Showing posts from December, 2025

this is my power shell

Create BOQ Application - React & TypeScript with PowerShell Script How to Create a Complete BOQ Application Using React + TypeScript & PowerShell Script In this guide, we will walk through creating a fully functional Interior BOQ (Bill of Quantities) Application using React + TypeScript . The app includes: Full item list with SFT, Rate, Qty, Total Image support for each item Grand Total calculator Clean UI table with React components To make this even easier, we will use a PowerShell script to automatically create the entire project structure and components. Step 1: Run PowerShell Script to Auto-Create the App Save the following script as create-boq-app.ps1 and run it: # Create React + TypeScript BOQ App npx create-react-app boq-app --template typescript Set-Location boq-app # Create folders...