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

frontstreet

v1.0.2

Published

Front-End Web Framework

Readme

Front Street Banner

Front Street is a customizable front-end web framework by Jason Bobich. It can be used as a lightweight framework for base CSS styling or as a more full-featured front-end framework.

View Demos and Docs

Getting Started

There are few ways to include Front Street in your project.

  1. Include pre-compiled Front Street core only, for a lightweight base framework to build on.
  2. Include the full, pre-compiled Front Street framework, including core styles and all blocks.
  3. Create a custom build with NPM to include.

Method 1: Core Styles Only

Download the latest release with pre-built assets. Copy /dist/css/frontstreet-core.min.css to your project and include it within the <head> of your website.

<link rel="stylesheet" href="/path/to/file/frontstreet-core.min.css" />

Method 2: Full Framework

Download the latest release with pre-built assets.

Copy /dist/css/frontstreet.min.css to your project and include it within the <head> of your website.

<link rel="stylesheet" href="/path/to/file/frontstreet.min.css" />

Copy /dist/css/frontstreet.min.js to your project and include at the bottom of your website before the closing </body> tag. This script does require jQuery.

<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script src="/path/to/file/frontstreet.min.js"></script>

Note: We're aware that Front Street will be used often with WordPress. And so we're using an old version of jQuery in our testing and examples because that's what WordPress is bundling.

Optional step. If you plan to use the model and slider blocks, you'll need to include Magnific Popup and Owl Carousel. Also, if you're planning to use with Font Awesome, we suggest using the JavaScript version of Font Awesome 5. Below is an example that expands on the previous step, to incorporate all of this.

<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/solid.js" integrity="sha384-Z7p3uC4xXkxbK7/4keZjny0hTCWPXWfXl/mJ36+pW7ffAGnXzO7P+iCZ0mZv5Zt0" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/brands.js" integrity="sha384-ZqDZAkGUHrXxm3bvcTCmQWz4lt7QGLxzlqauKOyLwg8U0wYcYPDIIVTbZZXjbfsM" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/fontawesome.js" integrity="sha384-juNb2Ils/YfoXkciRFz//Bi34FN+KKL2AN4R/COdBOMD9/sV/UsxI6++NqifNitM" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<script src="/path/to/file/frontstreet.min.js"></script>

Note: You don't need to include any CSS files for Magnific Popup or Owl Carousel; Front Street takes care of styling these, within its integration to provide a unique look to using these scripts.

Method 3: Custom Build With NPM

In your project, install the NPM package.

npm install frontstreet --save-dev

Full Default JavaScript Build

If you're looking to just include the full Front Street distributed JavaScript into your bundle, that's the NPM package's main file.

import 'frontstreet';

Custom JavaScript Build

Or, using the Front Street API, you can include only the blocks you need to build a custom version. Here's an example:

import $ from 'jquery';

import FrontStreet from 'frontstreet/src/js/FrontStreet';
import Background from 'frontstreet/src/js/blocks/Background';
import Tooltip from 'frontstreet/src/js/blocks/Tooltip';

import 'frontstreet/src/scss/frontstreet-core.scss';
import 'frontstreet/src/scss/blocks/_background.scss';
import 'frontstreet/src/scss/blocks/_tooltip.scss';

const frontstreet = new FrontStreet();

frontstreet.add('background', Background);
frontstreet.add('tooltip', Tooltip);
frontstreet.init(); // Add blocks to "frontstreet" jQuery namespace.

$(document).ready(function() {
  $('.my-background').frontstreet('background');
  $('.my-tooltip').frontstreet('tooltip');
});

Note: Front Street's JavaScript source files utilize ES modules (ESM). So, for custom bundling, you'll need to make sure to use a bundling tool that supports this, like Webpack or Rollup.

Custom CSS Build

The previous example incorporated the styling by importing through the JavaScript. This is a common approach if you're using a tool like Webpack, where you'd have a loader set up to handle those files. But what if you're working with Sass in some other way to compile out a custom build of the Front Street's CSS?

Start by creating an .scss file for your custom variables, which can override any variables in Front Street.

$fs-font-family-base: "My Font";
$fs-font-size-base: 18px;

$fs-link-color: #000;
$fs-link-color-hover: #000;

$fs-branding-colors: (
  primary: (
    base: #000,
    contrast: #fff
  ),
  secondary: (
    base: #000,
    contrast: #fff
  )
);

And then the following is an example of implementing the full Front Street framework into a custom .scss file.

// Variable Overrides
@import 'path/to/my-variables.scss';

// Include Framework
@import '~frontstreet/src/scss/frontstreet.scss';

The above example can be modified to also build out a CSS file with only what you need. Instead of including the entire framework, you can include the framework core and then add only the blocks you need.

// Variable Overrides
@import 'path/to/my-variables.scss';

// Include Framework
@import '~frontstreet/src/scss/frontstreet-core.scss';
@import '~frontstreet/src/scss/blocks/alert';
@import '~frontstreet/src/scss/blocks/breadcrumb';
// ...

Note: In the sample code above, we're using the ~ to reference a package from node_modules. Check out node-sass-tilde-importer.

Browser Support

Chrome | Firefox | Edge | IE | Safari | Opera --- | --- | --- | --- | --- | --- | Latest ✔ | Latest ✔ | Latest ✔ | 11+ ✔ | 9.1+ ✔ | Latest ✔ |

Creator

Jason Bobich