DEV Community

Cover image for Creating vite vue ts template: Create vite project
Sardorbek Imomaliev
Sardorbek Imomaliev

Posted on • Updated on

 

Creating vite vue ts template: Create vite project

Create vite project

  1. Create vite project from vue-ts template npm init vite@latest vite-vue-typescript-starter -- --template vue-ts
  2. Move contents of created folder into root of repo.

    $ mv vite-vue-typescript-starter/* vite-vue-typescript-starter/.gitignore .
    $ rmdir vite-vue-typescript-starter
    
  3. git add .

  4. git commit -m 'npm init vite@latest . -- --template vue-ts'

Links

Project

GitHub logo imomaliev / vue-ts

Vite + Vue + TypeScript template

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.