Compiles HTML with SSI into static HTML pages
NOTE: This plugin will soon be rewritten to base on node-ssi
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-ssi --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-ssi');
In your project's Gruntfile, add a section named ssi
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
ssi: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
});
Type: String
Default value: 'html'
The Directory location where to locate Server Side Includes from.
Type: String
Default value: '.tmp/.ssiCache'
The Directory Location to store the cached ssi files
Type: Regex
Default value: /<!--\#include\s+(file|virtual)=["']([^"'<>|\b]+)['"]\s+-->/g
The Regex Object used to find and parse SSI Include Tags
Type: String | Boolean
Default value: false
Whether or not to check the cache when processing the file. true
to use the cached version, false
to clear the file cache, and 'all'
to clear all cached files
Type: String
Default value: '.html'
The extension to use for the outputed files.
Type: String
Default value: 'utf8'
File encoding used to read and write out the files.
Typical Settings as such read in .html
files in the /html
directory, and outputs the parsed files to /.tmp/html
. This will only output the originating .html
files, but still include files specified by #include
tags such as .inc
or .shtml
grunt.initConfig({
ssi: {
options: {},
target: {
files: [{
expand: true,
cwd: 'html',
src: ['**/*.html'],
dest: '.tmp/html'
}],
}
},
});
Here is an example that clears the entire cache, and outputs files as .shtml
grunt.initConfig({
ssi: {
options: {
cache: 'all',
ext: '.shtml',
baseDir: 'path/to/views',
},
target: {
files: [{
expand: true,
cwd: 'html',
src: ['**/*.html'],
dest: '.tmp/html'
}]
}
},
});
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.
Updated to allow for proper Grunt Logging for normal use and verbose and Fixes for passing the cache clear option
Fixes to use the proper Grunt Files options
Intial release and proof of concept