grunt-freemarker

0.1.8 • Public • Published

grunt-freemarker

Freemarker renderer plugin for grunt.

NPM version

Getting Started

This plugin requires Grunt ~0.4.2

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-freemarker --save-dev

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

grunt.loadNpmTasks('grunt-freemarker');

The "freemarker" task

Overview

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

grunt.initConfig({
  freemarker: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

options.views

Type: String Default value: views

The folder where all views in.

options.out

Type: String Default value: public

The folder where export to.

options.encoding

Type: String Default value: utf-8

View's encode.

Usage Examples

The view and dest file defined in mocks/simple.js:

module.exports = {
  view: "/simple.ftl",
  out: "/simple.html",
  data: {
    name: "ijse"
  }
};

and views/simple.ftl:

view sample
 
${name}

Then, the result would be public/simple.html:

view sample

ijse

Default Options

grunt.initConfig({
  freemarker: {
    options: {},
    src: "mocks/*.js"
  },
});

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

(Nothing yet)

Bitdeli Badge

Readme

Keywords

Package Sidebar

Install

npm i grunt-freemarker

Weekly Downloads

3

Version

0.1.8

License

none

Last publish

Collaborators

  • ijse