Skip to content

jprichardson/node-tweezers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node.js - tweezers

build status

tweezers extracts your mustache, hogan.js, handelbars or any arbitrary tokens. It's colloquially named to stick with the "mustache" theme.

Why?

Sometimes you want to know what the mustache tokens are in a file or string before your compile and render.

Installation

npm install --save tweezers

API

tweeze(string, [open], [close])

Extract the tokens into an array.

var tweeze = require('tweezers');

 var data = "Hello {{name}}!\nMay I send you an email to {{email}}?"
data += "\nI'd really love to talk to you at {{email}}, please?"

var tokens = tweeze(data);
console.dir(tokens); //{ name: 1, email: 2 }

License

(MIT License)

Copyright 2012, JP Richardson

About

Extract mustache tokens from a file or string.

Resources

License

Stars

Watchers

Forks

Packages

No packages published