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

publish-a-website

v1.0.0

Published

> This website is deployed via GitHub Pages

Downloads

81

Readme

Practice Website Deployment

This website is deployed via GitHub Pages.
Here is a link to the deployment: https://williamowen65.github.io/
Check it out!

What I initially decided to do with this space is explore storybook.js, a front-end framework for documenting UI components. Storybook can of course be used with frontend frameworks, but I wanted to keep this as simple as possible so I am using a setup for vanilla HTML/CSS/JS.

I began to wonder how I would use these components in a project and decided to learn about custom HTML elements

Along with learning about how custom HTML elements work, I learned about JS bundlers, like Webpack and Vite. Vite was used to get up and running with Storybook, Webpack was used to keep custom HTML components split between HTML, JS, and CSS files.

One thing that is interesting about the setup is the the HTML and CSS files are evaluated by template string. So the custom components can pass attribute props to the HTML and CSS.

The only thing that I really do not like is how you currently have to pass complex data to the components via javascript. To improve this workflow, I may have to introduce JSX or another templating engine to this project. But one of my goals is for the npm deployment to have no dependencies.

You can learn more about the npm deployment at https://williamowen65.github.io/

Goals

  • Create some layouts and components to show off
  • Create an organized storybook

Setup

The steps to get this working was to:

  • Create a github repo with a new project
  • Create package.json
  • Create github actions
    • Give github actions permissions to write to repo
    • Create a script for github actions
  • Setup Github pages to deploy the branch that the actions write to (gh-pages)
npx storybook init --type html

.github\workflows\deploy-storybook.yml

name: Deploy Storybook

on:
  push:
    branches:
      - main  # or your default branch 

jobs:
  build-and-deploy:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v3

      - name: Set up Node.js
        uses: actions/setup-node@v3
        with:
          node-version: '20'  # Use the version you need

      - name: Install dependencies
        run: npm install

      - name: Build Storybook
        run: npm run build-storybook

      - name: Deploy to GitHub Pages
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./storybook-static