项目作者: eXebyss

项目描述 :
This is SPA for P3 duct and fitting prices from different material.
高级语言: JavaScript
项目地址: git://github.com/eXebyss/pricesapp.git
创建时间: 2021-06-25T19:38:46Z
项目社区:https://github.com/eXebyss/pricesapp

开源协议:MIT License

下载


First things first

This is SPA web-app

Following technologies are used and implemented:

-ReactJS and JSX to render components and their content.\
-Redux, React-Redux and Redux Toolkit to manage the states.\
-Tailwind for CSS.\
-Webpack to optimize production build.\
-Manifest.json and service-worker.js are included in Webpack. Check plugins.\
-PWA is enabled. The web-app is installable and can be run in offline mode.\
-Deployed on Vercel.

0. To install the app:

Run the following command in your terminal:

npm i or npm install

1. To run the app in development build:

Run the following command in your terminal:

npm run start

Webpack will compile a bundle to run. This will not be optimized. You can ignore warning about bundle maximum size.

2. To run the app in production build:

Run the following command in your terminal:

npm run build

Webpack will compile a bundle to run. This is optimized. You still will get warnings about bundle maximum size. Maximum bundle size are extended and will be pre-cashed.

3. To run the production build:

Run the following command in your terminal:

npm install -g serve

serve -s dist

Happy hacking!