Skip to content

Instantly share code, notes, and snippets.

View ytjchan's full-sized avatar

HKJeffer ytjchan

View GitHub Profile
@smebberson
smebberson / app.js
Created December 23, 2011 05:51
Using mustache as an Express view engine
// module depencies
var express = require('express');
var app = express.createServer();
// variables
var port = 3000;
// config
app.set('view engine', 'mustache');
app.register(".mustache", require('stache'));
@staltz
staltz / introrx.md
Last active May 18, 2024 05:17
The introduction to Reactive Programming you've been missing