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

@awesome-nodes/build-system

v0.3.2

Published

Integrated Zero Configuration Build System for Awesome Nodes Apps and Framework Components

Readme

Awesome Nodes Zero Configuration Build System

Integrated Zero Configuration Build System for Awesome Nodes Apps and Framework Components

Project Goals

Zero Configuration Build

The main target of Build System is to provide out of the box building of TypeScript libraries as:

  • ES5 for NodeJS applications
  • ES6 for tree shaking builds
  • and as UMD bundle for web applications

Command-Let Development

The secondary target of Build System is to provide out of the box command-let development with exit code handling. Command-let development provides a neat way for writing business logic in complex continuous integration scenarios.

Exit Code Handling

Exit code handling ensures intercommunication of execution status between command-lets and execution host.

There is no chance to exit not gracefully when using Command-Let`s written with Build System.

See src/lib/demo.cmdlet.ts and src/lib/demo.ts for a quick demonstration.

Installation

BuildSystem can be installed globally

$ npm run start

or

$ npm install -g @awesome-nodes/build-system

Usage

CLI

Run Builds-System locally

$ node bin/bs -h

Run Builds-System globally installed or as project dependency

$ bs -h

Help Output

Options:
  -V, --version                         output the version number
  -tc, --team-city                      Enable TeamCity compatible logging (default: false)
  -v, --verbose                         Verbose output (default: false)
  -h, --help                            display help for command

Commands:
  bundle-babel [options] [params...]
  bundle-webpack [options] [params...]
  demo [options] [params...]
  npm-install [options] [params...]
  help [command]                        display help for command

Setup

  1. Install Build System within your node library project as development dependency
    $ npm install --save-dev @awesome-nodes/build-system
  2. Add build scripts to your node package configuration
    {
      "scripts": {
        "build": "concurrently \"npm run build:es\" \"npm run build:umd\"",
        "build:es": "bs bundle-babel -a",
        "build:umd": "bs bundle-webpack",
        "build:watch": "cross-env NODE_ENV=development concurrently \"npm run build:es -- -w\" \"npm run build:umd -- -w\""
       }
    }

Build System Node Module

Directory Layout

  • bin - Build System command line binary
  • lib - Build System library
  • src - Build System sources

Node Module Build

Usage of NPM instead of Yarn

Zero configuration requires to be non dependent on any dependency for initial build host provisioning. So we relay on the npm node package manager for any kind of node module specific operations.