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

@pro-vision/handlebars-helpers

v1.1.4

Published

Collection of useful Handlebars Helpers

Downloads

1,695

Readme

handlebars-helpers

Collection of useful Handlebars Helpers.

Installation

npm i @pro-vision/handlebars-helpers -D

Usage

const pvHandlebarsHelpers = require('@pro-vision/handlebars-helpers');

module.exports = pvHandlebarsHelpers;

Helpers

pv-choose

Helper to Fallback to a Default value, if the given property is undefined.

<h1>{{pv-choose headline 'Default Headline'}}</h1>

pv-colors

Helper to render color-overview form given scss-file.

Example scss file

// LSG-Color-Group
// Group-Name: Basic Colors
$my-color__black: #000;
$my-color__white: #fff;

// LSG-Color-Group
// Group-Name: Red
// Group-Description: My Red Color Palette
$my-color__red-300: #E57373;
$my-color__red-400: #EF5350;
$my-color__red-500: #F44336;
$my-color__red-600: #E53935;
$my-color__red-700: #D32F2F;

// LSG-Color-Group
// Group-Name: Blue
// Group-Description: My Blue Color Palette
$my-color__blue-300: #64B5F6;
$my-color__blue-400: #42A5F5;
$my-color__blue-500: #2196F3;
$my-color__blue-600: #1E88E5;
$my-color__blue-700: #1976D2;

Example hbs file

{{#pv-colors "src/colors.scss" "$my-color" this}}
  <h3 class="headline">{{this.groupName}}</h3>

  {{#if this.groupDescription}}
    <h4 class="group-description">{{this.groupDescription}}</h4>
  {{/if}}

  {{#each this.colorInfos}}
    <div class="color">
      <div class="color__tile" style="background: {{this.hex}}"></div>
      <div class="color__description">
        <p class="colors__name"><b>Name:</b> {{this.name}}</p>
        <p class="color__hex"><b>Hex-value:</b> {{this.hex}}</p>
      </div>
    </div>
  {{/each}}
{{/pv-colors}}

pv-concat

Helper to concat strings

{{> headline text=(pv-concat "Hi" " " userName) }}

pv-icons

Helper to render icon-overview form given filenames

Example folder-structure

.
├── icons
│   ├── my-icon-arrow.svg
│   ├── my-icon-plus.svg
│   ├── my-icon-check.svg
│   └── my-icon-info.svg

Example hbs-file

{{#pv-icons "icons/" "my-icon" this}}
  <span style="width: 100px; height: 100px; background: #f5f5f5; margin: 2px; padding: 10px; display: inline-block;">
    <my-e-icon class="my-e-icon" icon-id="{{this.id}}"></my-e-icon>
  </span>
{{/pv-icons}}

pv-path

Helper to render optional nested paths.

  <img src="{{pv-path @root this.src}}" />

To signal a nested page just add nestedPath to pages frontmatter yml.