Vue.js Introduction & Installation (original) (raw)
Last Updated : 20 Mar, 2024
**Vue JS is a JavaScript framework **used to design and build user interfaces. It is one of the best frameworks for **Single Page Web Applications. It is compatible with other libraries and extensions as well.
In the development field, there may be so many issues that can not be solved by using a single library, so the VueJS is compatible with other libraries so you can easily go for it. The VueJS is supported by all popular browsers like Chrome, Firefox, IE, Safari, etc. You can easily compare this library with your favorite libraries.
**Approaches to Install Vue JS
The VueJs can be used in three different ways listed below:
- **Directly included CDN file.
- **Install through the npm.
- **By CLI use VueJS
**Directly include CDN file:
You need to download the VueJS Development Version and Production Version then include it in the script tag. **CDN:
- For learning purpose, you can use below script(with the specific version):
- For production purpose, you can use below script:
- For ES modules compatible, use below script:
**Install through the NPM:
Before applying this procedure you must have installed npm, to check npm installed or not run the below command:
npm -v
If not, you can install that through node.js installation procedure for:
Now you are ready to install the VueJS, to do so run the below command. It will install the most updated stable version of VueJS.
npm install vue
**Using CLI:
Open your terminal or command prompt and run the below command.
npm install -g @vue/cli;
Create First Vue Project
**Step 1: Run the below command to create the project.
vue create myproject
**Step 2: Now get into the myproject folder by using below command.
cd myproject
**Step 3: Run the below command to run locally your project.
npm run dev