npm
npm is used to deliver DevExtreme to Angular, Vue, and React applications. The following packages are provided:
Install the latest stable version:
npm install devextreme@20.2 --save --save-exact npm install devextreme-angular@20.2 --save --save-exact // to use DevExtreme with Angular npm install devextreme-vue@20.2 --save --save-exact // to use DevExtreme with Vue npm install devextreme-react@20.2 --save --save-exact // to use DevExtreme with React
Install the latest published version. It can be stable or pre-release. Pre-release versions contain hotfixes and new features for early testing.
npm install devextreme@20.2-next --save --save-exact npm install devextreme-angular@20.2-next --save --save-exact // to use DevExtreme with Angular npm install devextreme-vue@20.2-next --save --save-exact // to use DevExtreme with Vue npm install devextreme-react@20.2-next --save --save-exact // to use DevExtreme with React
NOTE
We recommend saving an exact version of DevExtreme to avoid unexpected updates because DevExtreme does not use Semantic Versioning. In our versioning system, the first and middle numbers indicate a major release which may contain behavior changes.
See Also
Feedback