Installation / Setup

There are a couple ways to install / use Basket, the recommended way is a CDN but you can manually download and incldue it in your project as well. Here are the options:

Just the CSS

This is what most users will need, only use the Saas method if you would like to modify the CSS framework.

CDN Links (recommended)

                <!-- Basket CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/getbasket@1.1.5/dist/basket.min.css" integrity="sha256-yIdRXJ0Bo1WqI0P9AKNPJawdhekE0H1ZgIX9HI1ZFNE=" crossorigin="anonymous">
            
                <!-- Basket JS -->
<script src="https://cdn.jsdelivr.net/npm/getbasket@1.1.5/dist/basket.min.js" integrity="sha256-q8vG+1lziKwMsTBt8xhCBQsaMWmd7eW5U0EIjFqJxgE=" crossorigin="anonymous"></script>
            

GitHub Releases (manual)

You can download the latest zip file from GitHub. Unzip the file and place the /dist folder into your project (or just copy the files you need over manually).

Download ZIP

Sass for Developers

You probably know what you are doing if you know what Sass is, if not; this method is for modifying the framework.

Package Managers (recommended)

You'll need npm for this. Here is our NPM package page.

                npm install getbasket
            

GitHub

                
git clone https://github.com/Basket-CSS/basket.git
cd basket
npm install && npm run build