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

grunt-assemble-handlebars-module-exporter

v0.2.8

Published

A grunt plugin that extracts modules from html markup based on regular expressions

Downloads

4

Readme

GitHub version npm version Build Status Dependencies GitHub issues GitHub stars GitHub forks GitHub license Built with Grunt

grunt-assemble-handlebars-module-exporter

A grunt plugin that extracts modules from html markup based on regular expressions

Example

Source

Note: If you want to take a deeper look into the example just run npm test and take a look into the generated folders.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

Install latest release recommended

npm install grunt-assemble-handlebars-module-exporter --save-dev

Install bleeding edge caution

Add the follwing line to your package.json

"grunt-assemble-handlebars-module-exporter": "git+https://github.com/pixel-shock/grunt-assemble-handlebars-module-exporter.git"

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-assemble-handlebars-module-exporter');

The "assemble-handlebars-module-exporter" task

Overview

In your project's Gruntfile, add a section named assemble-handlebars-module-exporter to the data object passed into grunt.initConfig().

grunt.initConfig({
	'assemble-handlebars-module-exporter': {
			// Target-specific file lists and/or options go here.
			'your_target': {
				// Setting up your options
				'options': {
					// Take a look into the "defaults.js" file within the package
				}
			}
		}
	}
});

Options

options.moduleStartRegex

Type: RegEx Default value: /(<!--\s?START\s?(.*?.hbs)\s+(AS?\s?(.*?))?\s?(WITH?\s?(.*?))?-->)/gm

A RegEx which is used to find the modules within the HTML code.

options.moduleEndSubstitutions

Type: Array Default value:

[ {
	'replace': 'START',
	'with': 'END'
} ]

An Array which defines the replacements in the "start" regex to build the "end" regex.

Example

<!-- START b-branding.hbs WITH b-branding.css -->

will be converted to

<!-- END b-branding.hbs -->

options.moduleSrc

Type: String Default value: resources/templates/

A String which defines the source directory for the modules (.hbs files for example).

options.moduleExportExtension

Type: String Default value: .html

A String which defines the export extension of the modules.

options.dependingFilesBasePath

Type: String Default value: _output

A String which defines the output directory of assemble. The Task searches the depending files in this directory.

options.dependingFilesSearchPaths

Type: Array Default value:

[
	'_output/js/**/',
	'_output/css/**/',
	'_output/img/**/'
]

An Array which defines the directories within the dependingFilesBasePath which should be scanned for depending files.

options.baseDependencies

Type: Object Default value:

files: {
	'always': [
		'_output/fonts/**/*.*'
	],
	'byFileType': [
		'_output/js/config.js',
		'_output/js/app/jquery-extend.js',
		'_output/js/lib/jquery.js',
		'_output/js/lib/modernizr.js',
		'_output/css/base-styles.css',
		'_output/css/vendor.css'
	]
}

An Object which defines the base dependencies for each module.

always means that these files are always copied to the output folder of the module.

byFileType means that these files are copied if the file extensions dependencies in the module matching the base dependency.

Comments in your modules

Take a look in the repository. I've included some sublime snippet files. Feel free to use them!

basic

<!-- START b-footer.hbs -->
<div id="site-info" class="b-footer">
	<ul>
		{{#each items}}
			<li>{{#if link}}<a href="{{ link }}" title="{{ title }}">{{/if}}{{{ title }}}{{#if link}}</a>{{/if}}</li>
		{{/each}}
	</ul>
</div>
<!-- END b-footer.hbs -->

with AS option

<!-- START b-footer.hbs AS b-footer-with-new-name -->
<div id="site-info" class="b-footer">
	<ul>
		{{#each items}}
			<li>{{#if link}}<a href="{{ link }}" title="{{ title }}">{{/if}}{{{ title }}}{{#if link}}</a>{{/if}}</li>
		{{/each}}
	</ul>
</div>
<!-- END b-footer.hbs -->

with WITH option

<!-- START b-footer.hbs WITH footer.css,footer.js,footer-logo.png -->
<div id="site-info" class="b-footer">
	<ul>
		{{#each items}}
			<li>{{#if link}}<a href="{{ link }}" title="{{ title }}">{{/if}}{{{ title }}}{{#if link}}</a>{{/if}}</li>
		{{/each}}
	</ul>
</div>
<!-- END b-footer.hbs -->

with AS and WITH option

<!-- START b-footer.hbs AS b-footer-with-new-name WITH footer.css,footer.js,footer-logo.png -->
<div id="site-info" class="b-footer">
	<ul>
		{{#each items}}
			<li>{{#if link}}<a href="{{ link }}" title="{{ title }}">{{/if}}{{{ title }}}{{#if link}}</a>{{/if}}</li>
		{{/each}}
	</ul>
</div>
<!-- END b-footer.hbs -->

Testing

Within the root directory run:

npm test

... this will install all node modules for this task, it will install all node modules for veams and it will run all tests