Skip to content

第三章 项目创建 (Vite项目初始化)

前言

本篇文章开始,我们就要开始创建自己的项目,并进行配置和开发啦。

一、Vite创建项目

1、创建

windows电脑进入此电脑,选择要创建项目的文件夹,右键用git bash打开terminal或者打开cmd,mac则使用terminal进入到创建项目的文件夹

bash
使用 NPM:
$ npm create vite@latest

使用 Yarn:
$ yarn create vite

使用 PNPM:
$ pnpm create vite

node-version

2、具体步骤

1、输入项目名称 vite-01

2、选择vue vite-02

3、选择TypeScript vite-03

4、创建成功 vite-04

5、也可以使用快捷命令直接创建 vite-05

6、进入项目文件夹 vite-06

7、npm install / yarn vite-07

8、npm run dev / yarn dev vite-08vite-09

二、GitHub上传

1、创建账号

官方网站:https://github.com/github-01 通过Sign Up注册自己的github账号

2、创建仓库

github-02github-03github-04github-05github-06

3、首次提交

按照文档命令将本地项目和远端仓库关联并提交代码

bash
git init
git add .
git commit -m "init"
git remote add origin https://github.com/SmallTeddy/testing-web.git
git push -u origin main

commit-01

提交后刷新仓库界面,确认代码提交成功

commit-02

总结

本文介绍了如何使用Vite工具创建自己的vue项目,仓库路径:https://github.com/SmallTeddy/ProjectConstructionHub