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 🙏

© 2026 – Pkg Stats / Ryan Hefner

grunt-vue-template-compiler

v0.4.5

Published

run the npm vue-template-compiler on html files to compile them to render functions to improve FE performance

Readme

grunt-vue-template-compiler

This task runs the vue-template-validator, vue-template-compiler and then vue-template-es2015-compiler on Vue HTML files to produce the pre-compile JS functions. These functions can then be substituted for import: template from ./template.html!text in the JS files and builder will then merge these into the build.js file, avoiding the need to compile the HTML files at run time.

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:

npm install grunt-vue-template-compiler --save-dev

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

grunt.loadNpmTasks('grunt-vue-template-compiler');

The "vue_template_compiler" task

Overview

In your project's Gruntfile, add a section named vue_template_compiler to the data object passed into grunt.initConfig().

grunt.initConfig({
  vue_template_compiler: {
    options: {
      validate: true, //default is true
      validateOnly: false, //default is false
      es2015: true //default is true
    },
    your_target: {
      files : {
        'app/js/**/*.js' : 'app/js/**/template.html' //note that JS files will be named output as render.js
      }
    },
  },
});

Options

options.validate

Type: Boolean Default value: true

This option tells the task to run the html files through the vue-template-validator.

options.validateOnly

Type: Boolean Default value: false

This option tells the task to run the html files through vue-template-validator only and not run the compile steps.

options.es2015

Type: Boolean Default value: true

This option tells the task to take the complied HTML files and run them through vue-template-es2015-compiler to take advantage of es2015 features and, more importantly, remove the with(this) inside the render function to make it strict compliant.

Notes on Usage

Once the render.js files have been created you'll need to use a grunt task like grunt-string-replace to find import statements for the html files and replace them with render.js.

You'll also be able to replace vue.min.js with vue.runtime.min.js in production.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

0.4.1 Minor formating on read me

0.4.0 Big read me update

0.3.1 Updated the readme with extra details and a usage example.

0.3.0 Added Vue template validator and the ES2015 compiler steps to the task

0.1.1 Minor update

0.1.0 First version