Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.93 KB

README.md

File metadata and controls

52 lines (32 loc) · 1.93 KB

vite-template

A frontend build to optimize CSS3 and JavaScript files.

Quick start

Note You need Node.js on your computer before running.

  1. First clone this repository and navigate into your project directory
  2. Install the dependencies: npm run install
  3. Run the development server: npm run dev

Starting development mode

To launch the project in development mode with hot module replacement.

  • npm run dev: to compile application and serve it to the browser

You can view the development server at http://localhost:5173

Starting production mode

Build and optimize your application with Vite for production.

  • npm run build: build for production with minification

Starting preview mode

The option shows the current changes, that are made in development mode to check that everything works before deploying the condo to production.

  • npm run preview: shows a live project preview

Commands for linting/fixing files

Navigate into your project directory and start your preview mode up.

  • npm run lint:js: lints JavaScript files
    • npm run lint:js:fix: to eliminate all possible errors
  • npm run lint:css: lints Cascading Style Sheets files
    • npm run lint:css:fix: to eliminate all possible errors
  • npm run lint:files: lints configuration files with Prettier
    • npm run lint:files:fix: to eliminate all possible errors
  • npm run lint:full - to run all lints commands above
  • npm run lint:full:fix - to run all lints all commands above and fix those automatically

Additional information

Commands for NPM to manage the packages.

  • npx npm-check-updates - to show outdated NPM packages
  • npx npm-check-updates -u - to update NPM packages