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 🙏

© 2026 – Pkg Stats / Ryan Hefner

landing-gear

v0.3.3

Published

A collection of lit elements that mirror the wickedblocks project (https://blocks.wickedtemplates.com)

Readme

Landing Gear

Landing Gear is a set of Lit-powered components that builds on the work done by wickedtemplates to create wickedblocks.

It was originally called "Wicked Landing Gear", but the "Wicked" was removed to avoid confusion as this code is not created or maintained by wickedtemplates.

Getting started

1. Use a smart bundler like Parcel

2. Install landing-gear via /YARN

$ yarn add landing-gear

If you use npm then this would be:

$ npm install landing-gear

3. Add HTML that uses one or more component imports

Use HTML like the folloing:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8"/>
    <title>Your Site</title>
    <script type="module" src="../node_modules/landing-gear/dist/lg-alert/index.js"></script>
  </head>
  <body>
    <h1>Your Site</h1>
    <h2>A subtitle for your site</h2>

    <!-- Basic alert, powered by landing-gear -->
    <lg-alert class="alert"
              variant="info"
              title="Basic Alert"
              description="Important alert text that needs to be shown"></lg-alert>

  </body>
</html>

Build your project

Build your project however it should be built depending on which bundler you used. If you used parcel this is as simple as:

$ parcel

Contributing

Adding a new component

To add a new component:

  1. yarn create @vitejs/app new-component --template lit-element-ts
  2. Copy over a Makefile from an existing component
  3. Update the package.json with the project name, and appropriate script tasks and devDependencies to match other projects
  4. Update package.json for use with Vite library mode

Alternatively you can also also copy an existing existing library, and make the appropriate replacements

Viewing an existing component's demo page

To view an existing component's demo page, run the following:

$ COMPONENT=lg-content make serve-component-demo

TODO

Here are some things that should really get done at some point:

  • [ ] Setup Parcel aliasing to support separate Lit static build from components (single lit import, multiple components, rather than every component having an instance of lit inside)