# Installation
## Direct Download / CDN
[https://unpkg.com/vuex@4](https://unpkg.com/vuex@4)
[Unpkg.com](https://unpkg.com) provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like `https://unpkg.com/vuex@4.0.0/dist/vuex.global.js`.
Include `vuex` after Vue and it will install itself automatically:
```html
```
## NPM
```bash
npm install vuex@next --save
```
## Yarn
```bash
yarn add vuex@next --save
```
## Dev Build
You will have to clone directly from GitHub and build `vuex` yourself if you want to use the latest dev build.
```bash
git clone https://github.com/vuejs/vuex.git node_modules/vuex
cd node_modules/vuex
yarn
yarn build
```