Skip to content

Install

In order to use Boostify you need to get a license, if you dont have it yet, please click here here

You can install Boostify.js using either bower or npm, depending on your preference:

Install library from command line.

Terminal window
npm install boostify
import Boostify from 'boostify';
const boostify = new Boostify({
debug:true,
license:"YOUR-LICENSE-KEY",
})

Begin by creating a main.js file within your project directory. Then, incorporate the latest version of Boostify from unpkg. Inside main.js, insert the following code.

const boostify = new Boostify({
debug:true,
license:"YOUR-LICENSE-KEY",
})
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script src="https://unpkg.com/boostify@latest/dist/Boostify.umd.js"></script>
<script src="main.js"></script>
</body>
</html>

With everything set up and operational, you have the flexibility to trigger events at the most opportune moments, inject scripts after the DOM has loaded, among other actions.