Create Course Boilerplate
Video Lecture
Description
We will create a course boilerplate using Vite.
Vite is a French word meaning "quick". It is pronounced "veet".
Install Vite
Open a command prompt on your system somewhere.
And we will install Vite.
npm create vite@latest
Next, enter a project name. This will be used as the root folder name of our project.
Three.js-TypeScript-Boilerplate
Press Enter at the next prompt to confirm the package name. Note that it has lower-case letters and also replaced the period sign.
? Package name: ยป three-js-typescript-boilerplate
Select the Vanilla
framework option.
And then select the TypeScript
option.
It will scaffold a new project in a folder named Three.js-TypeScript-Boilerplate
We should change directory to that new folder,
cd Three.js-TypeScript-Boilerplate
Install required packages as shown in the new package.json
file,
npm install
And then we can run the dev version of the project.
npm run dev
If all is well, we should see a message that our project is available at http://localhost:5173/
Open http://localhost:5173/
in your browser.
It shows a basic template configured for writing Vanilla JS in TypeScript.
Open the project in our IDE
Now to open the project using VSCode.
Press Ctrl - C twice to exit the currently runnning Vite development server process.
Then in the same folder, type,
code .
It should open VSCode with the project root being the current folder. (Three.js-TypeScript-Boilerplate
)
Now, there are many unnecessary files in this project, so we will delete most of those to be left with the minimal structure that we need to continue.
Delete everything until you are left with this folder and file structure.
|-- Three.js-TypeScript-Boilerplate
|-- node_modules
|-- (Don't delete any files and folder from this folder)
|-- public (Delete all files from this folder)
|-- src (Delete all files from the folder, except for these two files below)
|-- main.ts
|-- style.css
|-- .gitignore
|-- index.html
|-- package-lock.json
|-- package.json
|-- tsconfig.json
If you are using the same version of Vite as I showed in the video, you would have deleted just the files vite.svg
, counter.ts
, typescript.svg
and vite-env.d.ts
Replace Contents of Remaining Files.
Replace the contents of index.html
, main.ts
and style.css
with the code below.
./index.html
1 2 3 4 5 6 7 8 9 10 11 12 |
|
./src/style.css
1 2 3 4 |
|
./src/main.ts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
Note
The project will still contain errors at this time. We will fix them in the next lesson.