
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
helper-process
Advanced tools
{{process}} handlebars helper for processing raw templates in included content, with the correct context.

{{process}} handlebars helper for processing raw templates in included content, with the correct context.
Install the helper with: npm install handlebars-helper-process --save
If you use Assemble and Grunt, you have some simple options for adding helpers.
Add handlebars-helper-process to the helpers property in the Assemble task or target options in your Gruntfile:
grunt.initConfig({
assemble: {
options: {
// You may either register the helper this way.
helpers: ['handlebars-helper-process', 'foo/*.js']
},
files: {}
}
});
Or, add the handlebars-helper-process module to both the devDependencies and the keywords array of your project's the package.json, enabling Assemble will automatically resolve the helper. Example:
{
"name": "your-project",
"dependencies": {
"handlebars-helper-process": "*"
},
"keywords": [
"handlebars-helper-process"
]
}
With that completed, you may now use the {{#process}} helper in your templates:
{{#each pages}}
{{#isnt basename 'index'}}
{{#process}}
{{{page}}}
{{/process}}
{{/isnt}}
{{/each}}
Please report any bugs or feature requests, thanks!
Please see the Contributing to helper-process guide for information on contributing to this project.
Jon Schlinkert
Copyright (c) 2013 Jon Schlinkert Released under the MIT license
This file was generated on Wednesday, November 6, 2013.
FAQs
{{process}} handlebars helper for processing raw templates in included content, with the correct context.
We found that helper-process demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.