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

gulp-html-to-json

v1.0.0

Published

Automatically generate angularjs file for templateCache. Converts html contents to json object. Compile html files and wrap it all in a single json file.

Downloads

758

Readme

gulp-html-to-json

Makes inclusion of files easy and fast. Generates angular module for templateCache. Compile html files and wrap it all in a single json file. Enables you to include only the files you want.

Can be useful if you want to generate various groups of templates and include only the html files you want for that specific group. Can be use in backbone and angular

To run Demo:

$ cd demo
$ gulp compileD

Just make sure the you already install all node modules including Dev Dependencies

Install :traffic_light:

$ npm install gulp-html-to-json --save

Pipe :neckbeard:

Like any other gulp plugin, transformed source files will flow onward to the destination of your choice.

In your gulpfile.js

/gulpfile.js

var gulp = require('gulp');
var htmltojson = require('gulp-html-to-json');

gulp.task('markdown', function(){
        gulp.src('path/to/your/**/*.tpl')
            .pipe(htmltojson({
                filename: "filenameyouwant" //without file extension
                , useAsVariable: true
                , isAngularTemplate : true
                , prefix : "yourprefix"
                , includePaths: ['base/path']
            }))
            .pipe(gulp.dest('.'))

Options

As of now, there are two options that you can use:

  • filename (optional)

    • filename of the json file
    • should use only if you have 1 group template.
  • useAsVariable (optional)

    • default false
    • If set to true, it will output your file as a javascript variable. Otherwise, json file
  • isAngularTemplate (optional)

    • default false
    • If set to true, it will output your file as an angular template cache.
  • prefix (optional)

    • set the prefix on your angular module name
  • includePath (optional)

    • Takes a String or an Array of paths.
    • If set, gulp-html-to-json will use these folders as base path when searching for files.

Sample outpus if useAsVariable = false;

{
    "key.name" : "<div>your html content</div>"
}

output file is filename.json

Sample output if useAsVariable = true;

var filename = {
    "key.name" : "<div>your html content</div>"
}

output file is filename.js

Sample output if isAngularTemplate = true;


    angular.module("prefix.filename").run(['$templateCache',
      function($templateCache) {
        $templateCache.put("key.name",
            // keyname.html content (escaped)
        );
        $templateCache.put("key2.name",
            // keyname2.html content (escaped)
        );
        // etc.
      }
    ]);

output file is filename.js

Usage

In the file where you want want to compile you html, add a comment similar to this:

//= key.name : relative/path/to/file.html

where key.name is the name want to associate with the html content in your json object.

If you use * as your key name like this :

//= * : relative/path/to/file.html

It will automatically use the filename of your html as its key name.

If you want to use glob similar to commonly used in GruntJS, you may also to that like this:

//= * : relative/path/to/**/*.html

Suggested key name is * so the it will use the filename as the keyname.

First sample code output:

{
    "key.name" : "<div>your html content</div>"
}

Second sample code output:

{
    "file" : "<div>your html content</div>"
}

Third sample will look into all html content inside the directory and output it like this:

{
    "file" : "<div>your html content</div>",
    "file2" : "<div>your html content 2</div>"
}

MIT LICENSE copyright © 2016 Scripts and Pixels.