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

molten

v0.4.3

Published

A fixed-fluid web application css grid volcano.

Downloads

3

Readme

Molten

A fixed-fluid, full-width web application css grid.

Ever wonder where all the css grids are that allow you to create full width and full height web layouts?

Table of Contents

Play with an Example

Play with the code on Codepen:

http://codepen.io/scottcorgan/pen/jkHov

Screen Shot 2013-04-09 at 10 43 24 AM

Install

Install with Bower

bower install molten --save

Usage

HTML

<link rel="stylesheet" href="path/to/components/molten/molten.css">

or Import - sass/scss/less

@import 'path/to/molten.scss'; - scss/sass

@import 'path/to/molten.less'; - less

Basic Grid

Creating a basic 2 column, left sidebar grid.

basic-column-grid

<div class="grid columns split250">
  <aside class="bar">
    <!-- left sidebar (250px) -->
  </aside>
  <section class="content">
    <!-- the content (fluid) -->
  </section>
</div>

Nesting for complex layouts

Molten gives you classes to create grids based on columns and rows. You can nest rows and columns within rows and columns to help you build complex layouts. There is no limit to how many grids you can nest.

nested-column-row-grid

<div class="grid columns split250">
  <nav class="bar">
    <!-- left sidebar (250px) -->
  </nav>
  <div class="content">
  
    <!-- Girdception!! -->
    <section class="grid rows split50">
      <aside class="bar">
        <!-- topbar (50px) -->
      </aside>
      <article class="content">
        <!-- content (fluid) -->
      </article>
    </section>
    
  </div>
</div>

Grid Types

Left

Sidebar on the left side

<div class="grid columns split250">
  <div class="bar">
    <!-- left sidebar (250px) -->
  </div>
  <div class="content">
    <!-- the content (fluid) -->
  </div>
</div>

Right

Sidebar on the right side

<div class="grid columns split250 right"> <!-- only need to add the "right" class name -->
  <div class="bar">
    <!-- right sidebar (250px) -->
  </div>
  <div class="content">
    <!-- the content (fluid) -->
  </div>
</div>

Top

Header bar along the top

<div class="grid rows split50"> <!-- use "rows" instead of "columns" for a top bar -->
  <div class="bar">
    <!-- top bar (50px) -->
  </div>
  <div class="content">
    <!-- the content (fluid) -->
  </div>
</div>

Bottom

Footer bar long the bottom

<div class="grid rows split50 bottom"> <!-- only need to add the "bottom" class name -->
  <div class="bar">
    <!-- bottom bar (50px) -->
  </div>
  <div class="content">
    <!-- the content (fluid) -->
  </div>
</div>

Grid Sizes

Fixed Column Widths

  • 50px - .split50
  • 100px - .split100
  • 150px - .split150
  • 200px - .split200
  • 225px - .split225
  • 250px - .split250
  • 275px - .split275
  • 300px - .split300
  • 325px - .split325
  • 350px - .split350
  • 375px - .split375
  • 400px - .split400

Fixed Row Heights

  • 10px - .split10
  • 20px - .split20
  • 30px - .split30
  • 40px - .split40
  • 50px - .split50
  • 60px - .split60
  • 70px - .split70
  • 80px - .split80
  • 90px - .split90
  • 100px - .split100
  • 200px - .split200
  • 300px - .split300

Browser Support

Desktop:

  • Chrome 24+
  • Firefox 19+
  • Safari 6+
  • IE 9+

Mobile

  • Mobile Safari 6+
  • Chrome for Mobile (iOS 6+, Android ... eh, it works)