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

laravel-elixir-ngtemplatecache

v0.3.1

Published

Laravel Elixir extension for generating AngularJS an templateCache module

Downloads

72

Readme

Laravel Elixir ngTemplateCache

Laravel elixir extension for generation angularjs templatecache module.

Read more about templateCache

  • Angularjs API documentation: https://docs.angularjs.org/api/ng/service/$templateCache
  • gulp-angular-templatecache: https://github.com/miickel/gulp-angular-templatecache

Features

  • Generate template cache module
  • So the angularjs could load all template with one http request
  • Compress html in production mode
  • Generate sourcemap

Install

npm install --save-dev laravel-elixir-ngtemplatecache

Usage

Example Gulpfile.js:

var elixir = require('laravel-elixir');

require('laravel-elixir-ngtemplatecache');

elixir(function(mix) {
    mix.ngTemplateCache();
});

All arguments all optional, meaning of them:

  • src - template file pattern, these files located inside the base directory and these will be aggregated into one angularjs module, default value: /**/*.html
  • outputDir - where to put the generated module, default value: elixir.config.jsOutput which means public/js if you left untoched the elixir configuration
  • baseDir - base directory for searching template files, default value: elixir.config.assetsDir + 'templates' which means resources/assets/templates in case you haven't configured the elixir in another way
  • options - configuration options for this plugin and for these 3rdparty libraries used by the plugin.
  • templateCache - This plugin use the [gulp-angular-templatecache]https://github.com/miickel/gulp-angular-templatecache#api) for the templatecache module generation. You can configure that plugin here. Default options:
{
       standalone: true
}
  • htmlmin - Options for html minification, you find possible parameter in the html-minifier documentation. Default options:
{
       collapseWhitespace: true,
       removeComments: true
}

Complex example Gulpfile.js containing all default values:

var elixir = require('laravel-elixir');

require('laravel-elixir-ngtemplatecache');

elixir(function(mix) {
    mix.ngTemplateCache('/**/*.html', 'public/js', 'resources/assets/templates', {
        enabled: {
            htmlmin: true // in production, false in development mode
        },
        templateCache: {
            standalone: true
        },
        htmlmin: {
            collapseWhitespace: true,
            removeComments: true
        }
    });
});

Example Angular Usage:

Include the templates file into your html:

<script src="public/js/templates.js"></script>

And then add the templates module to the main module of your angularjs application:

angular.module('app', ['templates', '...']);

Use the template:

<ng-include src='foo/bar.html'></ng-include>

This will require a file BASEDIR/foo/bar.html, so you don't have to put the BASEDIR inside the url.

Changelog

0.3.1

  • Added config option to toggle html-min usage

0.3.0

  • Refactor path handling to get the ability to ignore files with gulp/glob patterns

0.2.0

  • Upgrade to laravel-elixir 3.0
  • Upgrade dependencies

0.1.0

  • Initial release

TODO

  • Tests
  • Source code documentation

License

MIT