> For the complete documentation index, see [llms.txt](https://pode.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pode.gitbook.io/docs/getting-started/frontend.md).

# Frontend

You can host web-pages using Pode, and to help you can also use package managers like `yarn` to install frontend libraries - like bootstrap.

## Using Yarn

The following will install Yarn onto your machine:

```
choco install yarn -y
yarn init
```

Once installed, you can use Yarn to download frontend libraries. The libraries will be added to a `package.json` file - which if you're using the Pode CLI, you'll already have in place.

To install frontend libraries, you could use the following:

```
yarn add bootstrap
yarn add lodash
```

## Build via Pode

Once you've added some libraries you can use `pode install` to trigger `yarn`. This will tell `yarn` to install the packages to a `pode_modules` directory.

> Other useful packages could include `gulp`, `jquery`, `moment`, etc.
