npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ggf

v0.0.3

Published

gotta go fast

Downloads

11

Readme

ggf

a set of tools for speeding up websites using common optimizations. designed for cloudflare workers (and probably won't work with anything else).

demo

installation

$ npm i ggf

usage

capture a response from your origin, and pass it through ggf. in three lines:

import ϟ from 'ggf'
addEventListener('fetch', event => event.respondWith(handler(event)))
const handler = ({ request }) => ϟ(fetch(request))

and a longer sample:

import ggf from 'ggf'
addEventListener('fetch', event => event.respondWith(handler(event)))
const handler = ({ request }) => {
  const resp = fetch(request)
  return ggf(resp)
}

configuration

every optimization in GGF can be turned off (and some can be fine-tuned) by passing in a configuration option as the second argument to the function.

// ...
ggf(resp, {
  // deferScripts (defaults to false)
  // lazyLoadImages (defaults to true)
  // version (defaults to true)
})

defer scripts

resource-blocking scripts that cause high TTI can be blocked using the deferScripts configuration. this optimization can break sites, so it disabled by default. to enable:

ggf(resp, {
  deferScripts: true
})

you may find that some scripts should not be deferred in order for your site to render correctly. to configure this, pass in an object to deferScripts, including the options.except array:

ggf(resp, {
  deferScripts: {
    enabled: true,
    options: {
      except: ["/assets/js/app.min.js"]
    }
  }
})

you can also skip scripts at the origin, by adding the data attribute ggf-skip to a script tag, as seen below:

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" data-ggf-skip="true"></script>

currently, scripts are excepted using a very basic .includes() check in the script src attribute. this probably doesn't work for everyone (and probably has some edge-cases), please feel free to submit a PR if you'd like to improve that behavior!

lazy load images

using the lazy attribute, images are automatically lazy loaded and don't block the page from loading. this optimization is enabled by default. to disable it:

ggf(resp, {
  lazyLoadImages: false
})

version

as a sanity check to ensure that the code is working, ggf will add a meta tag to your site's head, with a property of ggf:version. this optimization is enabled by default. to disable it:

ggf(resp, {
  versionMetaTag: false
})

GOTTA GO FAST