/ Installation and Upgrade / Installation with NPM cli
Search results

Installation

20 Mar 2023 / 1 minute to read

Install by using npm CLI

Syncfusion Vue (Essential JS 2) packages are published in npm. You can install the necessary packages from npm’s install command. For example, vue grid package can be installed using following command.

Copied to clipboard
npm install @syncfusion/ej2-vue-grids --save

Install by using package.json

  1. Add the Syncfusion Vue (Essential JS 2) package references in the dependencies of ~/package.json file.
Copied to clipboard
{
    "dependencies": {
        "@syncfusion/ej2-vue-grids": "*",
        "@syncfusion/ej2-vue-charts": "*"
    }
}

The * indicates the latest version of npm package. Refer the documentation for more details about npm versioning.

  1. Now, open the command prompt and run the npm install command line. This will install all npm dependencies in a single command line.

Refer the documentation for more details about npm package.json