Boostify

Stop loading
everything at once.

Boostify is a JavaScript toolkit that defers scripts, loads resources on demand, and keeps your main thread free — so your site feels instant.

↓ 78%
bundle size reduction
↑ 40pts
Lighthouse score improvement
< 1kb
gzip core size
The Problem

Third-party scripts are killing your Core Web Vitals.

Most devs load everything on page load — analytics, chat widgets, video embeds — even when the user never scrolls that far. Every script competes for your main thread, blocking your actual content from appearing. Boostify gives you back control.

Blocked main thread

Scripts fight for CPU time with your content, making your site unresponsive on load.

Inflated bundle size

Third-party scripts add hundreds of kBs users must download before seeing anything.

Slow LCP & FID

Google penalizes slow Core Web Vitals — which directly impacts your search rankings.

How it works

Up and running in minutes

Install Boostify

Add it to your project in seconds. Works with any framework or plain HTML.

Choose your trigger

Pick when to load: on scroll, click, element visibility, user inactivity, or page load.

Load only what's needed

Scripts, styles, and videos load precisely when the user needs them — not before.

Real-world examples

See it in action

Google Analytics fires on every page load — even for bots and bounces that never convert. Defer it until the browser is idle and the user has actually engaged, so your Core Web Vitals stay clean and your data stays meaningful.

const bstf = new Boostify({ debug: false });

// Mark scripts with type="text/boostify" in your HTML:
// <script type="text/boostify" src="gtag.js"></script>

bstf.onload({
  worker: true,    // load via proxy (recommended)
  callback: (result) => {
    console.log('Analytics ready!', result.triggeredBy);
  }
});
Features

Everything you need to go fast

Free. Open source. No limits.

Boostify is completely free to use. No licenses, no hidden plans. Just a fast, focused toolkit for developers who care about performance.