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 🙏

© 2025 – Pkg Stats / Ryan Hefner

alleluia

v0.0.8

Published

Static blog generator

Downloads

11

Readme

Alleluia

Alleluia is a static site generator that I use for my own sites.

It is intended to be fast, simple, extensible, and moddable. Alleluia uses a concept of pipelines where input data goes through a series of functions (pipes) with standardized inputs and outputs which transform the data. Alleluia comes with a basic set of pipes but you can write and use your own pipes that fit your needs better.

Installation

The easiest way to install Alleluia is using npm:

npm install -g alleluia

You need to have Node.js installed beforehand.

Get started

Clone or download this sample project.

The only required part of any Alleluia project is alleluia.json config file. It contains all information about your project as well as pipelines that Alleluia runs for your project.

To compile a project, just run alleluia (if you have installed Alleluia globally) in the project directory.

Pipelines

An alleluia workflow consists of one or several pipelines, each pipeline runs pipes on its own set of data and saves the final results with the name of the pipeline. Those results may later be loaded and processed by other pipelines. There are several types of pipes, such as pipe, filter, data, and tee.

The data pipe is used to load saved results of pipelines, while tee is a concept similar to map-reduce. Alleluia passes to a generic pipe data, pipe settings, alleluia config, set of filters and a callback function, to which the pipe should pass the results of its work. filter is a simple function that accepts a string, transforms it and outputs the resulting string. Alleluia runs a given filter against given property of each object in pipeline's data set. Also stock renderTemplate pipe binds all loaded filters to Swig template engine so the filters can be used in templates.

A basic pipeline looks like this:

{
  "name": "posts",
  "pipes": [
    { "pipe": "loadPosts" }
  ]
}

This pipeline uses loadPosts pipe to load posts and does nothing more. Actually it does one more thing: caches the loaded data so it can be used later.

A pipe can accept params:

{ "pipe": "sort", "by": "date", "order": "asc" }

TODO: more on pipelines

Stock pipes

TODO

Stock filters

TODO

License

MIT