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 🙏

© 2024 – Pkg Stats / Ryan Hefner

masonite

v0.2.1

Published

A simple static website generator CLI using HTML with light templating and Stylus for CSS preprocessing.

Downloads

8

Readme

Masonite

A simple static website generator using HTML with light templating and Stylus for CSS preprocessing

Masonite is a simple static site generator. It uses HTML for templating (still kind of hacked together, but HTML5 should bring some real templating features to the table), and stylus for CSS preprocessing.

Feel free to hack around with it.

Install

To install run

npm install masonite

Run

Okay, here's the basic idea. We've got our assets organized in a variety of folder, and we'll be compiling our site into the site/ folder. Here's how our directory looks:

.
├── bin
│   ├── build-pages.js
│   ├── build-styles.js
│   ├── watch-pages.js
│   ├── watch-public.js
│   └── watch-styles.js
├── content
│   ├── blog
│   ├── events
│   └── pages
│       ├── about.html
│       ├── bp
│       │   ├── index.html
│       │   └── sobre-nós.html
│       └── index.html
├── content-styles
├── layouts
│   ├── minimal.html
│   └── standard.html
├── layout-styles
│   ├── library
│   │   ├── colors.styl
│   │   ├── open-sans.styl
│   │   └── typography.styl
│   ├── minimal.styl
│   └── standard.styl
├── LICENSE.md
├── package.json
├── public
│   ├── fonts
│   │   └── open-sans
│   │       ├── open-sans-italic.woff
│   │       └── open-sans.woff
│   ├── images
│   │   └── weird.jpg
│   ├── javascripts
│   │   └── hello-js-world.js
│   └── stylesheets
├── README.md
└── site
    ├── about.html
    ├── bp
    │   ├── index.html
    │   └── sobre-nós.html
    ├── fonts
    │   └── open-sans
    │       ├── open-sans-italic.woff
    │       └── open-sans.woff
    ├── images
    │   └── weird.jpg
    ├── index.html
    ├── javascripts
    │   └── hello-js-world.js
    └── stylesheets
        ├── minimal.css
        └── standard.css

The content/ folder and sub-folders contain our content. The bin/ folder contains some build and watch commands. When we build various things, we're assembling content and compiling it into the site/ folder

Looking at the package.json scripts is perhaps the most central place to understand what's happening. By the way, there are two dependencies. chokidar for watching files, and http-server for serving up the static files once they're compiled.

Let's take a look at those scripts:

{
  "scripts": {
    "test": "npm run wreck && npm run start",
    "wreck": "rm -rf site",
    "build-public": "cp -R public/. site/",
    "build-pages": "node bin/build-pages.js",
    "build-styles": "node bin/build-styles.js",
    "build-blog": "",
    "build-events": "",
    "watch-public": "node bin/watch-public.js",
    "watch-pages": "node bin/watch-pages.js",
    "watch-styles": "node bin/watch-styles.js",
    "watch-blog": "",
    "watch-events": "",
    "build": "npm run build-public && npm run build-pages && npm run build-styles",
    "watch": "npm run watch-public & npm run watch-pages & npm run watch-styles & npm run serve",
    "serve": "http-server site",
    "start": "npm run build && npm run serve"
  }
}
  1. For now npm run test simply wrecks the site and tries to start it up again.
  2. npm run wreck simply deletes the site/ folder.
  3. npm run build-public copies the public folder (js, css, images, fonts...) into the site/ folder.
  4. npm run build-pages compiles content from the content/pages/ folder with layouts from the layouts/ folder and drops them into the site/ folder. It does this multiple directories deep, in case you need language folders or something like that.
  5. npm run build-styles runs stylus commands on the layout-styles/ folder.
  6. npm run build-blog and npm run build-events are just placeholders for now, as are their respective folders in content/.
  7. npm run watch- commands essentially run the build commands as files change, get added, deleted, and as new folders are created, renamed, or removed.
  8. npm run build runs all the build commands.
  9. npm run watch does all the watch commands and serves up the site.
  10. npm run serve spins up an http-server and serves the static site in the site/ folder.
  11. npm run start builds and serves the site, but doesn't watch.

That's the basic idea. It's still very early in its life. The code's messy, the dependencies are minimal and random. It's not very configurable. It's got plenty of room to grow.

Feedback, comments, and such are welcome.