Skip to content

derbyjs/derby-parsing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

derby-parsing

This module contains the HTML-based template parsing for DerbyJS. Given a template source string, it produces parsed Templates and Expressions as defined in derbyjs/derby-templates.

Installation

npm install derby-parsing

Example usage

var derbyParsing = require('derby-parsing');

var templateSource = '<title>{{_page.title}}</title>';
var template = derbyParsing.createTemplate(templateSource);

Tests

npm test