Skip to content

Latest commit

 

History

History
66 lines (44 loc) · 2.65 KB

installation.md

File metadata and controls

66 lines (44 loc) · 2.65 KB

Installation

You can install Vuex ORM Axios via NPM, Yarn, or download it directly. This is a plugin for Vuex ORM, therefore you must ensure Vuex ORM and axios are installed.

NPM

npm install @vuex-orm/plugin-axios --save

Yarn

yarn add @vuex-orm/plugin-axios

Direct Download / CDN

Unpkg.com provides NPM-based CDN links. Simply download and include with a script tag.

For development environments, testing and learning purposes, you can use the latest uncompressed version with:

<script src="https://unpkg.com/@vuex-orm/plugin-axios"></script>

For production, it's recommended to link to a specific version number and build to avoid unexpected breakage from newer versions:

<script src="https://unpkg.com/@vuex-orm/[email protected]/dist/vuex-orm-axios.min.js"></script>

See Release Notes for available versions.

If you are using native ES Modules, there is also an ESM compatible build:

<script type="module">
  import VuexORMAxios from 'https://unpkg.com/@vuex-orm/plugin-axios/dist/vuex-orm-axios.esm.js'
</script>

Build Variants

In the dist/ directory of the NPM package you will find many different builds. Each of them have their use depending on your build environment and may help to reduce bundle sizes.

URL
Development (uncompressed) vuex-orm-axios.js
Production (compressed) vuex-orm-axios.min.js
CommonJS vuex-orm-axios.common.js
ES Module vuex-orm-axios.esm.js

Dev Build

The built files in /dist folder are only checked-in during releases. To use the latest source code on GitHub, you will have to run a build yourself.

# cd /path/to/project
git clone https://github.com/vuex-orm/plugin-axios.git node_modules/@vuex-orm/plugin-axios
cd node_modules/@vuex-orm/plugin-axios
yarn && yarn build