New:Socket for Asana Is Now Available.Learn more
Get Started

foobars

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

foobars

Small and simple JS templating engine

Source
npmnpm
Version
0.0.4
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

FooBars

Small and fast coffeescript template library. Works as express middleware.

To parse:

FooBars = require('FooBars').parse

FooBars('PATH_TO_FILE.html',{
  myData:'Goes Here',
  can:function(){
    'also be a function'
  }
},optionalCallback)

FooBars will run callback with 2 paramaters. Error and HTML. If no callback is supplies, FooBars will return data in a Synchronous fassion.

Template Syntax:

###Sample data to be passed

{
  a:function(){return 'a'},
  b:function(){return 'b'},
  friends:['Jonnie', 'Matt']
}

###If

<if 'a' == a() || function(){ return 'a' }>
  <h1>Turns out 'a' is equal to 'a'</h1>
</if>
<h1>Turns out 'a' is qual to 'a'</h1>

###Each

<each of='this.friends'>
  <h1>I like {{name}}, he is my friend.</h1>
</each>
<h1>I like Jonnie, he is my friend.</h1>
<h1>I like Matt, he is my friend.</h1>

###Templates

<template name='home'>
  <h1>Template Code</h1>
</template>


<show name='home'></show> <!-- Load Template -->

FAQs

Package last updated on 15 Nov 2014

Related posts