Socket
Socket
Sign inDemoInstall

grunt-caveman

Package Overview
Dependencies
101
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grunt-caveman

Pre-compile Caveman templates.


Version published
Weekly downloads
14
increased by1300%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

grunt-caveman

Compile Caveman templates on the server-side using Grunt. Optionally render templates on the server-side as well.

Installation

npm install grunt-caveman

Usage

Add the grunt-caveman task to your Grunt config:

grunt.loadNpmTasks('grunt-caveman');

Server-side compiling, client-side rendering

caveman: {
  compile: {
    src: ['path/to/templates/*.html'],
    dest: 'public/templates.js'
  }
}

Rendering pre-compiled templates on the client-side:

var myTemplateData = { foo: [1, 2, 3], bar: true };
var html = Caveman.render('myTemplateName', myTemplateData);
document.getElementById('foo').innerHTML = html;

Server-side compiling and rendering

caveman: {
  compile: {
    src: ['path/to/templates/*.html'],
    data: {
      foo: [1, 2, 3],
      bar: true
    },
    render: {
      'indexPage': 'public/index.html',
      'aboutPage': 'public/about/index.html',
      'contactPage': 'public/contact/index.html'
    }
  }
}

License

MIT. Copyright © 2016 Andrew Childs

Keywords

FAQs

Last updated on 18 Sep 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc