Package Exports
- node-ssi
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-ssi) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-ssi
A server-side-include system for nodejs.
We only support parts of nginx ssi syntax:
<!--# include file="path" -->
<!--# set var="k" value="v" -->
<!--# echo var="n" default="default" -->
<!--# if expr="test" -->
<!--# elif expr="" -->
<!--# else -->
<!--# endif -->
usage
var SSI = require('node-ssi');
var ssi = new SSI({
baseDir: './html/',
encoding: 'utf-8'
payload: {
v: 5
}
});
// handle a file
ssi.compileFile('index.html', {payload:{title: 'Index'}}, function(err, content){
});
//handle a content
ssi.compile('<!--# echo var="v" default="default" -->', function(err,content){
});
test
grunt test
changelog
- 2014-11-03[17:00:51]:support special chars like
\n
,\v
etc.
license
MIT