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

generator-drywall

v0.0.5

Published

Yeoman generator

Readme

This Yeoman generator installs and configures a standard Drywall app. Optionally, it also installs and configures a simple user-specified CRUD app called Booze Rack on top of Drywall.

You may accept nearly all of Yeoman's defaults, if you have a MongoDB service running on your local machine with an empty DB called drywall, an administrator called drywall having a password of drywall. However, defaults for SMTP server are no good. You must configure an SMTP server. If you have one, you may use your own gmail account.

This generator has been tested on Drywall [version 0.9.26] (https://github.com/jedireza/drywall/tree/5a6c76a05b8d55b9193efa403ca3fc7d1488d65d).

Prerequisites

First, install the Drywall prerequsities. See [Drywall Requirements] (https://github.com/jedireza/drywall#requirements). Return here after you've fulfilled the Requirements section

Next, install [Yeoman] (http://yeoman.io/gettingstarted.html) and the [Yeoman Drywall Generator] (https://www.npmjs.org/package/generator-drywall) globally.

$ npm install yo -g 
$ npm install -g generator-drywall 

Make a directory for your new app.

$ mkdir {my_drywall_app} 
$ cd {my_drywall_app} 

Yeoman

Run the Yeoman Drywall Generator and answer his questions about your app.

$ yo drywall

See the [wiki page] (https://github.com/henchan/generator-drywall/wiki/_new?wiki[name]=Yeoman%27s%20questions) for an explanation of Yeoman's questions.

Download dependent modules

$ bower install

New App

Minify, uglify javascripts and serve your new app

$ grunt

Test your installation in a web browser. Set a new application password.
If required, make additional configuration changes in config.js

http://127.0.0.1:3000/
http://localhost:3000/login/forgot/
Submit your email address and wait a second. Go check your email and get the reset link.
http://localhost:3000/login/reset/:email/:token/

If you have installed a CRUD app, test it using the URL below (replacing crud and wines according to your earlier responses to Yeoman. After installation, grep for keywords "crud", "wine" and "grapes" (or alternatives selected by you) to locate sections of code that need to be added and/or modified to customise your own crud apps manually.

http://127.0.0.1:3000/crud/wines

If you wish, you can now remove Yeoman and the Yeoman Drywall generator, leaving just your new app in a functioning state.

 $ npm remove yo -g 
 $ npm remove generator-drywall -g