npm.io
0.3.0 • Published 8 years ago

prescott

Licence
ISC
Version
0.3.0
Deps
0
Size
40 kB
Vulns
0
Weekly
0
Stars
1

Prescott

A super-simple templating language

Npm page

About

Prescott is a templating language based on custom html/xml elements and extended with a mustache syntax for values {{ example }}. It is made possible using PEG.js, inspired by using Vue.js, and used by Generates to generate project files for scaffolding/bootstrapping.

Installation

npm install --save prescott

Usage

import { compile } from 'prescott'

const template = '{{ name }}'
const data = { name: 'Coleman' }
const render = compile(template)
const output = render(data)
// Outputs: Coleman

 

ISC Ian Walter

Keywords