DevExtreme jQuery - npm Package

Run the following command to install the main DevExtreme package's major release version:

npm install devextreme@18.1 --save --save-exact

DevExtreme also provides pre-release packages that contain hotfixes and new features for early testing. Run the following command to install the latest pre-release package:

npm install devextreme@18.1-unstable --save --save-exact
NOTE
We recommend saving an exact version of DevExtreme to avoid unexpected updates due to DevExtreme not using Semantic Versioning. In our versioning system, the first and middle number indicates a major release which may contain behavior changes.

You need additional npm packages to use DevExtreme with Angular, Vue or React. See the instructions in the dedicated GitHub repositories: Angular, Vue, React.

Using Yarn

All npm DevExtreme packages can be installed using Yarn. Run the following command to install the main DevExtreme package:

yarn add devextreme@18.1 --exact

The following command installs the latest pre-release package:

yarn add devextreme@18.1-unstable --exact

Install packages for Angular, Vue, or React in a similar manner if required.

See Also