Epitome now available as npm and under CommonJS
Just a quick update, Epitome now supports nodejs. Here’s an example creating a server via express and socket.io with a collection and a model that can be shared on the client as well: #!/usr/bin/env node ‘use strict’; var express = require(‘express’), app = express(), http = require(‘http’), server = http.createServer(app), io = require(‘socket.io’).listen(server); // load mootools globals and extend protos… Read more →
Recent Comments