# Install

## Get PoPo

You can get PoPo through the following ways.

- From [PoPo GitHub] (https://github.com/shunok/popo) to download the latest version of [release] (https://github.com/shunok/popo/releases), the extracted folder in the dist directory you can find the latest version of popo.js.

- Getting PoPo from NPM

```cmd
npm install popojs --save
```

## Import

- Client

```html
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <script src="popo.min.js"></script>
</head>
</html>
```

- JS File

```js

var P = require('popojs');

// es6
import * as P from 'popojs'

```