# Installation

You can install AngularJS Store by using your favorite node package manager (NPM or Yarn).

Using **NPM**:

```
npm install --save angularjs-store
```

Using **Yarn**:

```
yarn add angularjs-store
```

If you don't want to download and host AngularJS Store yourself, you can include it from a **CDN (Content Delivery Network)**. This will expose the `NgStore` class from the global `window` object.

```markup
<script src="https://cdn.jsdelivr.net/npm/angularjs-store@3.0.0/lib/angularjs-store.min.js" integrity="sha256-nsaQaMgobX864h304MR7laX7CykZNGPW4cfjlG+jOuc=" crossorigin="anonymous"></script>
```
