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

create-yore

v1.1.0

Published

CLI tool to scaffold a new project using the yore framework.

Readme

yore - a minimalist front-end framework built for developers who value clarity, structure, and simplicity. Just like in the good old days.

What is yore?

yore is a lightweight SCSS and JavaScript toolbox designed to help you build accessible, fast, and maintainable websites without relying on bloated UI libraries or complex build tools. It embraces modern web standards while honoring the craftsmanship of classic front-end development.

  • Clean, modular SCSS structure
  • Vanilla JS with namespaced components
  • Theme-ready color tokens (light & dark)
  • No dependencies — works out of the box
  • Flexible by design — use only what you need

Installation

Via npm:

npm init yore@latest

Or clone the repo directly:

git clone https://github.com/webARTelier/yore.git

Or scaffold with degit (copy project folder, but without Git history):

npx degit webARTelier/yore my-yore-project

Philosophy

I'm here to create - not to write configuration files.

yore stands for a clear, calm, and dependable way to build websites – inspired by a time when web development was still straightforward. No complex dependencies, no overengineering. Just a structured toolbox with proven best practices, modern techniques, and a focus on readability, maintainability, and pragmatic solutions.

Documentation

An online documentation site with examples, usage guides, and best practices is in the works.

Until then, check the templates/html folder for live examples.

Build Setup

yore uses Gulp and Rollup to compile SCSS and bundle JavaScript into minified, production-ready files.

1. Prerequisites

Make sure you have Node.js (>=18) and npm installed. Then install the local dependencies:

npm install

2. Available commands

👉 One-time build

Generates minified CSS (main.min.css) and JavaScript (main.min.js):

npm run build

👉 Start development mode (with file watching)

Watches SCSS and JS files and automatically rebuilds them on change:

npm run dev

3. Input/Output paths

  • Input SCSS: templates/scss/main.scss

  • Output CSS: templates/css/main.min.css

  • Input JS: templates/js/main.js

  • Output JS: templates/js/main.min.js

4. Notes

  • Rollup is configured with @rollup/plugin-node-resolve and @rollup/plugin-terser for dependency resolution and minification.
  • SCSS is compiled with gulp-dart-sass, auto-prefixed with autoprefixer, and renamed via gulp-rename.
  • Errors are handled gracefully using gulp-plumber and gulp-notify.

Roadmap

  • Launch documentation website

License

GPL-3.0 License
© Björn Müller - webartelier.de