Skip to content

Commit

Permalink
# Getting Started <audio id="vite-audio"> <source src="/vite.mp3" typ…
Browse files Browse the repository at this point in the history
…e="audio/mpeg"> </audio> ## Overview Vite (French word for "quick", pronounced `/vit/`<button style="border:none;padding:3px;border-radius:4px;vertical-align:bottom" id="play-vite-audio" onclick="document.getElementById('vite-audio').play();"><svg style="height:2em;width:2em"><use href="/voice.svg#voice" /></svg></button>, like "veet") is a build tool that aims to provide a faster and leaner development experience for modern web projects. It consists of two major parts: - A dev server that provides [rich feature enhancements](./features) over [native ES modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), for example extremely fast [Hot Module Replacement (HMR)](./features#hot-module-replacement).  - A build command that bundles your code with [Rollup](https://rollupjs.org), pre-configured to output highly optimized static assets for production.  Vite is opinionated and comes with sensible defaults out of the box. Read about what's possible in the [Features Guide](./features). Support for frameworks or integration with other tools is possible through [Plugins](./using-plugins). The [Config Section](../config/) explains how to adapt Vite to your project if needed.  Vite is also highly extensible via its [Plugin API](./api-plugin) and [JavaScript API](./api-javascript) with full typing support.  You can learn more about the rationale behind the project in the [Why Vite](./why) section.  ## Browser Support  During development, Vite sets [`esnext` as the transform target](https://esbuild.github.io/api/#target), because we assume a modern browser is used and it supports all of the latest JavaScript and CSS features. This prevents syntax lowering, letting Vite serve modules as close as possible to the original source code.  For the production build, by default Vite targets browsers that support [native ES Modules](https://caniuse.com/es6-module), [native ESM dynamic import](https://caniuse.com/es6-module-dynamic-import), and [`import.meta`](https://caniuse.com/mdn-javascript_operators_import_meta). Legacy browsers can be supported via the official [@vitejs/plugin-legacy](https://github.com/vitejs/vite/tree/main/packages/plugin-legacy). See the [Building for Production](./build) section for more details.  ## Trying Vite Online  You can try Vite online on [StackBlitz](https://vite.new/). It runs the Vite-based build setup directly in the browser, so it is almost identical to the local setup but doesn't require installing anything on your machine. You can navigate to `vite.new/{template}` to select which framework to use.  The supported template presets are:  |             JavaScript              |                TypeScript                 | | :---------------------------------: | :---------------------------------------: | | [vanilla](https://vite.new/vanilla) | [vanilla-ts](https://vite.new/vanilla-ts) | |     [vue](https://vite.new/vue)     |     [vue-ts](https://vite.new/vue-ts)     | |   [react](https://vite.new/react)   |   [react-ts](https://vite.new/react-ts)   | |  [preact](https://vite.new/preact)  |  [preact-ts](https://vite.new/preact-ts)  | |     [lit](https://vite.new/lit)     |     [lit-ts](https://vite.new/lit-ts)     | |  [svelte](https://vite.new/svelte)  |  [svelte-ts](https://vite.new/svelte-ts)  | |   [solid](https://vite.new/solid)   |   [solid-ts](https://vite.new/solid-ts)   | |    [qwik](https://vite.new/qwik)    |    [qwik-ts](https://vite.new/qwik-ts)    |  ## Scaffolding Your First Vite Project  ::: tip Compatibility Note Vite requires [Node.js](https://nodejs.org/en/) version 18+ or 20+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it. :::  ::: code-group  ```bash [NPM] $ npm create vite@latest ```  ```bash [Yarn] $ yarn create vite ```  ```bash [PNPM] $ pnpm create vite ```  ```bash [Bun] $ bun create vite ```  :::  Then follow the prompts!  You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + Vue project, run:  ```bash # npm 7+, extra double-dash is needed: npm create vite@latest my-vue-app -- --template vue  # yarn yarn create vite my-vue-app --template vue  # pnpm pnpm create vite my-vue-app --template vue  # bun bun create vite my-vue-app --template vue ```  See [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite) for more details on each supported template: `vanilla`, `vanilla-ts`, `vue`, `vue-ts`, `react`, `react-ts`, `react-swc`, `react-swc-ts`, `preact`, `preact-ts`, `lit`, `lit-ts`, `svelte`, `svelte-ts`, `solid`, `solid-ts`, `qwik`, `qwik-ts`.  You can use `.` for the project name to scaffold in the current directory.  ## Community Templates  create-vite is a tool to quickly start a project from a basic template for popular frameworks. Check out Awesome Vite for [community maintained templates](https://github.com/vitejs/awesome-vite#templates) that include other tools or target different frameworks.  For a template at `https://github.com/user/project`, you can try it out online using `https://github.stackblitz.com/user/project` (adding `.stackblitz` after `github` to the URL of the project).  You can also use a tool like [degit](https://github.com/Rich-Harris/degit) to scaffold your project with one of the templates. Assuming the project is on GitHub and uses `main` as the default branch, you can create a local copy using:  ```bash npx degit user/project#main my-project cd my-project  npm install npm run dev ```  ## Install `vite` Command  You can install the CLI command `vite` for your project using:  ```bash npm install vite ```  Or with yarn:  ```bash yarn add vite ```  Now you can create an index.html file like this:  ```html <p>Hello Vite!</p> ```  Then simply run:  ```bash vite ```  And index.html will be served on http://localhost:5173  ## `index.html` and Project Root  One thing you may have noticed is that in a Vite project, `index.html` is front-and-central instead of being tucked away inside `public`. This is intentional: during development Vite is a server, and `index.html` is the entry point to your application.  Vite treats `index.html` as source code and part of the module graph. It resolves `<script type="module" src="...">` that references your JavaScript source code. Even inline `<script type="module">` and CSS referenced via `<link href>` also enjoy Vite-specific features. In addition, URLs inside `index.html` are automatically rebased so there's no need for special `%PUBLIC_URL%` placeholders.  Similar to static http servers, Vite has the concept of a "root directory" which your files are served from. You will see it referenced as `<root>` throughout the rest of the docs. Absolute URLs in your source code will be resolved using the project root as base, so you can write code as if you are working with a normal static file server (except way more powerful!). Vite is also capable of handling dependencies that resolve to out-of-root file system locations, which makes it usable even in a monorepo-based setup.  Vite also supports [multi-page apps](./build#multi-page-app) with multiple `.html` entry points.  #### Specifying Alternative Root  Running `vite` starts the dev server using the current working directory as root. You can specify an alternative root with `vite serve some/sub/dir`. Note that Vite will also resolve [its config file (i.e. `vite.config.js`)](/config/#configuring-vite) inside the project root, so you'll need to move it if the root is changed.  ## Command Line Interface  In a project where Vite is installed, you can use the `vite` binary in your npm scripts, or run it directly with `npx vite`. Here are the default npm scripts in a scaffolded Vite project:  <!-- prettier-ignore --> ```json {   "scripts": {     "dev": "vite", // start dev server, aliases: `vite dev`, `vite serve`     "build": "vite build", // build for production     "preview": "vite preview" // locally preview production build   } } ```  You can specify additional CLI options like `--port` or `--open`. For a full list of CLI options, run `npx vite --help` in your project.  Learn more about the [Command Line Interface](./cli.md)  ## Using Unreleased Commits  If you can't wait for a new release to test the latest features, you will need to clone the [vite repo](https://github.com/vitejs/vite) to your local machine and then build and link it yourself ([pnpm](https://pnpm.io/) is required):  ```bash git clone https://github.com/vitejs/vite.git cd vite pnpm install cd packages/vite pnpm run build pnpm link --global # use your preferred package manager for this step ```  Then go to your Vite based project and run `pnpm link --global vite` (or the package manager that you used to link `vite` globally). Now restart the development server to ride on the bleeding edge!  ## Community  If you have questions or need help, reach out to the community at [Discord](https://chat.vitejs.dev) and [GitHub Discussions](https://github.com/vitejs/vite/discussions).
  • Loading branch information
hchiam committed Jun 7, 2024
1 parent 5739393 commit 3c88db0
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,34 @@ npm install
npm run dev
```

## Install `vite` Command

You can install the CLI command `vite` for your project using:

```bash
npm install vite
```

Or with yarn:

```bash
yarn add vite
```

Now you can create an index.html file like this:

```html
<p>Hello Vite!</p>
```

Then simply run:

```bash
vite
```

And index.html will be served on http://localhost:5173

## `index.html` and Project Root

One thing you may have noticed is that in a Vite project, `index.html` is front-and-central instead of being tucked away inside `public`. This is intentional: during development Vite is a server, and `index.html` is the entry point to your application.
Expand All @@ -122,10 +150,6 @@ Note that Vite will also resolve [its config file (i.e. `vite.config.js`)](/conf

## Command Line Interface

You can install the CLI command `vite` globally with `npm install -g vite` or `yarn global add vite`.

Or install it for a specific project with `npm install vite` or `yarn add vite`.

In a project where Vite is installed, you can use the `vite` binary in your npm scripts, or run it directly with `npx vite`. Here are the default npm scripts in a scaffolded Vite project:

<!-- prettier-ignore -->
Expand Down

0 comments on commit 3c88db0

Please sign in to comment.