
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@pro-vision/handlebars-helpers
Advanced tools
Collection of useful Handlebars Helpers.
npm i @pro-vision/handlebars-helpers -D
const pvHandlebarsHelpers = require('@pro-vision/handlebars-helpers');
module.exports = pvHandlebarsHelpers;
Helper to Fallback to a Default value, if the given property is undefined.
<h1>{{pv-choose headline 'Default Headline'}}</h1>
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}}
Helper to concat strings
{{> headline text=(pv-concat "Hi" " " userName) }}
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}}
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.
FAQs
Collection of useful Handlebars Helpers
The npm package @pro-vision/handlebars-helpers receives a total of 703 weekly downloads. As such, @pro-vision/handlebars-helpers popularity was classified as not popular.
We found that @pro-vision/handlebars-helpers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.