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

# Installing Bolt

Now that you actually want to install Bolt, it's actually very easy, so easy that we did not have to create any CLI tool.

Bolt does not uses any pre-processor libraries, though you can use SASS or LESS if you want, and that are just some optional cases. Bolt as of now supports only front-end and I am hoping to build SSR soon too, but till then, we will be using Vite to create our app.

As you expect, simply open your terminal and create a new vite project on vanillaJS settings

```bash
$ npm create vite@latest
```

{% hint style="warning" %}
Bolt as of now does not support TypeScript, so when creating the vite project, make sure you use vanilla-JS and not vanilla-TS
{% endhint %}

Now that you have created your project, let's switch to the project directory and install the bolt npm package

```bash
$ npm i boltjs-preview
```

And you are done! Now you can use Bolt as much as you want wherever you want with all the features of any modern front-end framework like react or angular
