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

waso

v0.1.3

Published

Waso is a refined task runner for Node.js.

Readme

Waso

This software is a work in progress.
It's not yet ready for production use, but feel free to give it a try and contribute with issues and pull requests!


Waso (/ˈwaso/, from the toki pona word for "bird") is a refined task runner inspired by Gulp, Grunt, and Taskr.

It is designed to revive the fluid nature of Makefiles in modern Node.js projects, and provide a more versatile asset pipeline than the convoluted systems that tools like Webpack and Parcel offer.

Usage

Waso starts with a waso.config.js file in your project's root directory. It is a JavaScript file that exports an instance of the Waso class.

const Waso = require('waso')

const sass = require('waso-sass')
const postcss = require('waso-postcss')
const rollup = require('waso-rollup')

const autoprefixer = require('autoprefixer')
const cssnano = require('cssnano')

module.exports = new Waso({
	_js: new Task()
		.source('src/js/index.js')
		.pipe(Waso.incremental({
			target: 'dist/js/',
		}))
		.pipe(rollup())
		.pipe(Waso.target('dist/js/')),

	_css: new Task()
		.source('src/css/index.scss')
		.pipe(Waso.incremental({
			target: 'dist/js/',
			renamer: () => 'index.css',
		}))
		.pipe(sass())
		.pipe(postcss([
			autoprefixer(),
			cssnano(),
		]))
		.pipe(Waso.target('dist/css/')),

	default: new Task()
		.series([ '_js', '_css' ]),
})

From there, all it takes is to run npx waso to build your project.

Transformers

Waso is driven by small scripts called transformers, generators which take an input list of files and yield modified versions of them. Transformers can be written manually, but a few are provided out of the box as packages in the Waso monorepo.

| Package | Description | | ------- | ----------- | | waso-sass | Transform Sass and SCSS files into CSS files. | | waso-postcss | Apply PostCSS transformations to CSS files. | | waso-rollup | Bundle JavaScript files with Rollup. |

Interested?

Get started by installing Waso with npm i -D waso. From there, check out the examples or documentation. (TODO)