To use this project, you can either download the code or clone the repository using git:
git clone https://github.com/talukdersoumen/talukdersoumen.github.io.gitThen, navigate to the project directory and install the required dependencies using npm:
cd talukdersoumen.github.io
npm installOnce you have installed the dependencies, you can start the development server using the following command:
npm run devThis will start the server at http://localhost:3000 and open your default browser.
To build the production-ready code, you can run:
npm run buildThis will create a dist folder with your built code, which you can deploy to a server.
This project comes with the following features out of the box:
This project has the following folder structure:
├── .github
├── .vscode
├── dist
├── node_modules
├── public
│ ├── favicon.ico
│ └── robots.txt
├── src
│ ├── assets
│ ├── components
│ ├── pages
│ ├── App.css
│ ├── App.jsx
│ ├── index.css
│ └── main.jsx
├── .gitignore
├── babel-plugin-macros.config.js
├── babel.config.js
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── README.md
├── tailwind.config.js
└── vite.config.jsContributions are always welcome! If you have any suggestions, bug reports, or pull requests, please open an issue or a pull request on GitHub.
Next Generation Frontend Tooling
- 💡 Instant Server Start
- ⚡️ Lightning Fast HMR
- 🛠️ Rich Features
- 📦 Optimized Build
- 🔩 Universal Plugin Interface
- 🔑 Fully Typed APIs
Vite (French word for "quick", pronounced /vit/, like "veet") is a new breed of frontend build tooling that significantly improves the frontend development experience. It consists of two major parts:
-
A dev server that serves your source files over native ES modules, with rich built-in features and astonishingly fast Hot Module Replacement (HMR).
-
A build command that bundles your code with Rollup, pre-configured to output highly optimized static assets for production.
In addition, Vite is highly extensible via its Plugin API and JavaScript API with full typing support.
| Package | Version (click for changelogs) |
|---|---|
| vite | |
| @vitejs/plugin-legacy | |
| create-vite |
See Contributing Guide.
MIT.