
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
handlebar-rider
Advanced tools
Compiles/watches a directory of handlebar templates files and precompiles into single js output file
================
This is a module and command line tool that will compile/watch a handlebars template directory and pre-compile any handlebars template files then concatenate them into a single javascript file.
The directory structure you use will namespace the templates with ['directory/template'] as with JST et all
UPDATE 2.25.2013 - @piercemoore has contributed some AMAZING updates to this project available on the command line.
UPDATE 9.20.2012 - I have merged this library with Flint (http://github.com/cif/flint) however, changes contributed by others are welcome and always merged.
npm install -g handlebar-rider
Command Line Usage:
Options:
-i, --in Specify an input templates directory [default: "./app/handlebars/"]
-o, --out Specify an output file into which templates are compiled [default: "./public/javascript/templates.js"]
-w, --watch Watch your handlebars files and compile when changes occur [default: false]
-r, --readable Make the output more readable by avoiding default minification [default: false]
-e, --extensions Add more extensions to the defaults for templates that Handlebar-Rider will compile [default: [".hb",".hbs",".handlebars"]]
-f, --force Forces all files found in the input directory to be compiled. Performance gains are not unheard of here. [default: false]
-s, --strip Strip all comments from templates to clean up un-minified output [default: false]
-c, --compact Hides the application name in command line logging for a more compact view [default: true]
hbr = require('handlebar-rider')
hbr.configure({
in: '/path/to/your/templates/'
out: '/path/to/output.js',
minify: false
})
hbr.compile()
hbr.watch()
html_output = Handlebars.templates['users/view'](data)
There are two methods for using partials within your templates:
If you create a directory within your templates directory aptly called "partials", the handlebars files will be pre compile and become available in your templates as partial_name
If you prefix your template file name with an underscore, you can can access it as directory_partial
templates
-- users
- _list.hb
- _form.hb
- edit.hb
- view.hb
-- partials
- photo_uploader.hb
<h1>Edit User</h1>
{{> users_list}}
{{> users_form}}
{{> photo_uploader}}
FAQs
Compiles/watches a directory of handlebar templates files and precompiles into single js output file
We found that handlebar-rider 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.