Skip to content

Instantly share code, notes, and snippets.

View ytjchan's full-sized avatar

HKJeffer ytjchan

View GitHub Profile
@staltz
staltz / introrx.md
Last active May 7, 2024 09:38
The introduction to Reactive Programming you've been missing
@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'));