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

ehealth-pillar

v1.5.4

Published

A framework of eHealth designed utility classes

Downloads

39

Readme

Quick Start


Step 1: Install the framework

$ npm install ehealth-pillar --save

Or by CDN directly in your HTML <head>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ehealth-pillar/output.css">

Step 2: Import style library

@import '~ehealth-pillar/output.css';

// Custom styles go here if needed

Prototyping (for eHealth Employees)


SASS support is also included

Develop

  1. Clone this project
$ git clone <user-repo>
  1. Build with dependencies
$ npm install
  1. Create *.html file at project root and reference design library and JS bundle.
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Playground</title>
    <link rel="stylesheet" href="./output.css">
</head>
<body>

    <!-- Your Lovely Work here -->

    <script src="./output.js"></script>
</body>
</html>
  1. Run NPM script to watch for file changes
$ npm run watch

5a. Live Reload with VSCode Using the Live server extension simply right click on html file and 'Open with Live Server'.

5b. Live Reload with Http Server

$ http-server

Build

As you develop, the files will automatically be compiled and extracted to individual files

output.css for CSS styles output.js for JS

Optional Build Plugins to be enabled:

  • cssnano for css optimization such as minifying, removing comments, etc.
  • purgecss for removing all unused styles
  • babel for transpiling JS code to ES5
  • terser for js optimization

The above plugins are disabled for development but should be used when deploying to production. Make sure all function calls found in plugins: [] in rollup.config.js are enabled.

TODO: set environment variables for DEV and PROD