DevExtreme React - Distribution Channels

npm

You can use npm to deliver DevExtreme to a React application. The following packages are provided:

Install the latest stable version:

  • npm install devextreme@24.2 --save --save-exact
  •  
  • npm install devextreme-react@24.2 --save --save-exact

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@24.2-next --save --save-exact
  •  
  • npm install devextreme-react@24.2-next --save --save-exact
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

Yarn

You can use Yarn to install the following DevExtreme npm packages:

Install the latest stable version:

  • yarn add devextreme@24.2 --exact
  •  
  • yarn add devextreme-react@24.2 --exact

Install the latest published version. It can be stable or pre-release. Pre-release versions contain hotfixes and new features for early testing.

  • yarn add devextreme@24.2-next --exact
  •  
  • yarn add devextreme-react@24.2-next --exact
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