パッケージの詳細

tweezers

jprichardson3.2k0.1.0

Extract mustache tokens from a file or string.

mustache, mustache.js, hogan, hogan.js

readme

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

更新履歴

0.1.0 / 2013-04-18

  • updated dev deps
  • changed indenting from 4 spaces to 2
  • dropped most of the methods