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

@demersdesigns/styleplate

v0.1.1

Published

A sensible living styleguide solution built on kss and gulp

Readme

alt-text

baseplate


A sensible baseline for simple web projects using HTML5 Boilerplate, SASS, Bourbon, Neat, and Gulp.

Requirements:


Project Capabilities:


  • Baseplate utilizes BrowserSync to allow for live reloading of files on multiple devices
  • Baseplate includes both development and production tasks.
  • The development tasks include:
    • JS - Javascript is run through JSHint and any errors are returned to the console. The files are then copied to the development folder. A copy of the minified jQuery file from the node_modules folder is copied to the target folder.
    • SASS - SCSS files are compiled into CSS and copied into the target folder
    • Images - Images are optimized and copied to the target folder.
    • Includes - Includes are compiled to saved as HTML files in the target folder.
    • Any updates to files in the assets folder will trigger a reload of the browser.
    • Errors in JS and CSS will output to the command line.
  • The production tasks include:
    • JS - JavaScript files included in the usemin blocks are concatenated, uglified, and copied to the target folder.
    • CSS - CSS files are minified, concatenated, and copied to the target folder.
    • HTML - HTML files are copied to the target folder.
    • Images - Images are copied to the target folder.

Getting Started

You'll need Node.js, npm and gulp to work with Baseplate. If you don't already have Node.s installed, I recommend you install it via Node Version Manager. Even better, install brew and use that to install NVM!

NVM will also install npm for you.

Once you've got Node and npm, you'll need gulp:

$ npm install -g gulp

Now grab a copy of Baseplate and set it up.

$ git clone [email protected]:demersdesigns/baseplate.git
$ cd baseplate
$ npm install // install additional dependencies

Now you're ready to get going.

Usage:


IMPORTANT: New files and edits to existing files should take place only within the assets folder. Files in the development and production folders are autmatically generated and will be overwritten when the gulp tasks are run. New HTML files and edits to existing HTML files should be done in the html folder inside the assets directory.

There are two tasks that can be run. One is for local development purposes and the other is for production. The dev task will run the development processes listed in the product capabilities section above and will continue to watch for changes and refresh the browser accordingly. The prod task cleans the target folder, runs the dev tasks and then runs a few other tasks to get the code production-ready including minification and concatenation. This process attempts to get your code to a place where you can then layer in any CI and deployment tasks that you may need on a per-project basis.

Local Development Instructions:

$ gulp dev

This process should create a target folder with the development files for your project and open up a new browser window with your project in it. In the console, you will see both a local and an external URL that your site is available for viewing from.

All file edits you make are automatically reflected in any of the browsers that have your project open.

Production Build Instructions:

  1. When you are ready to create project files that are ready for a production environment, run the prod task. This will complete all tasks listed above in the usage section.
  2. Once this process completes, the target folder will contain production-ready files.