0.0.5 • Published 10 years ago

lindy-simple v0.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

lindy-simple

Use templates for simple string replacements.

Features

  • String substitution using the "{{ variableName }}" format.
  • Structured context data: "{{ obj.foo.bar }}"

Usage

  var lindy_simple = require('lindy-simple')
    , template_source = 'Howdy, {{ person.firstname }}!'
    , render = lindy_simple(template_source)

  console.log(render({person: {firstname: 'Dave'}})) // == "Howdy, Dave!"

Running the tests

  $ git clone https://github.com/adamdicarlo/lindy-simple.git # clone or fork
  $ cd lindy-simple
  $ npm install
  $ npm test

License

MIT

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago