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 🙏

© 2025 – Pkg Stats / Ryan Hefner

mygovbc-bootstrap-theme

v0.4.1

Published

A BC Gov Look-and-Feel for MyGovBC Service Providers using a bootstrap 3.x theme

Readme

🚀 mygovbc-bootstrap-theme

A B.C. Gov. Look-and-Feel for MyGovBC Service Providers using a bootstrap 3.x theme.

Demostration of all bootstrap styles implemented and enhancements using this theme

Installation

Pick you favourite package manager method:

NPM

npm install mygovbc-bootstrap-theme --save-dev

Yarn

yarn add mygovbc-bootstrap-theme

Manual

Download the contents of the dist folder and include in your project.

Usage in Web App

CSS Includes

Depending on your web build system, i.e., webpack, you may or may not have to explicitly add the CSS link.

This code snippet shows the net result of the build system or if you're doing it manually:

<link rel="stylesheet"
      href="assets/css/mygovbc-bootstrap-theme.min.css"
      media="screen">

Javascript Includes (Optional)

Bootstrap has nice interactive components, this requires Bootstrap's Javascript and a JQuery dependency.
However, if you're using an AngularJS v2+ app, we recommend using ngx-bootstrap

npm install ngx-bootstrap --save-dev

That way, you don't have to include JQuery directly and you get nice Typescript interfaces to work with.

ReactJS and other frameworks have similar libraries to work with.

For a vanilla application you must include the Bootstrap JS and JQuery, they've been repacked for linking to in your app:

dist/js/bootstrap.js       <--- for development
dist/js/bootstrap.min.js   <--- for production
dist/js/npm.js             <--- for linking to with a node based build system

Fonts and Other Assets

The MyGovBC Bootstrap imports within the CSS to the following assets:

dist/fonts/fontawesome-webfont.ttf    <--- the font awesome icon pack, more choices than glyphicons lib
dist/fonts/MyriadWebPro.tff           <--- the default font for the theme
dist/images/gov3_bc_logo.png          <--- B.C. Government logo that fits nicely in the header
dist/images/favicon.ico               <--- Favicon of the B.C. Government logo

Enhancements from Vanilla Bootstrap

This bootstrap uses 99% bootstrap, to use it read the Bootstrap docs.
There are some minor additions to help with the B.C. look-and-feel

  1. Myrid WebPro font included and is used by default
  2. Font Awesome replaces Glyphicons
  3. visuallyhidden class can be used to accessibility purposes
  4. Sticky headers and footers if you use a #wrap and #pad divs, see the demo page