Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 367 Bytes

README.md

File metadata and controls

29 lines (15 loc) · 367 Bytes

New application

Empty applications creation commands.

React

Create a new application from basic template:

npx create-react-app new-app

Angular

Install Angular CLI into global scope:

npm install -g @angular/cli

Create a new application:

ng new new-app

Vue

Initialize application:

npm init vue@latest

Install dependencies:

npm install