metaserve
v0.8.5
Published
compile & serve metalanguage assets
Downloads
102
Readme
metaserve
metaserve makes web application prototyping quicker by compiling and serving assets built with meta-languages[1] such as CoffeeScript, Jade, and Styl (currently the full list).
Use as a command or as middleware to handle requests for e.g. js/myapp.js
by run-time-compiling the js/myapp.coffee
source file into Javascript. Similar to (but less contrived than) the Rails Asset Pipeline.
Metaserve is based on a collection of plugins, which by default support Jade (to HTML), CoffeeScript (to Javascript), and Sass (to CSS) to support the Prontotype stack. New languages are easily added with a simple plugin architecture.
As a command
Install with npm install -g metaserve
Use within a directory that has a bunch of .jade, .sass and .coffee.
Run metaserve
with optional arguments --host
and --port
. Defaults to 0.0.0.0:8000.
As middleware
Install with npm install metaserve
Use by supplying a base directory, then hooking it in as Express/Connect middleware...
var express = require('express');
var metaserve = require('metaserve');
app = express();
app.use(metaserve('./app'));
app.listen(8550);
... or as a fallback method in a standard http
server:
var http = require('http');
var metaserve = require('metaserve')('./app');
var server = http.createServer(function(req, res) {
if (req.url === '/dogs') {
return res.end('woof');
} else {
return metaserve(req, res);
}
});
server.listen(8550);
Writing Plugins
A plugin is simply a Javascript module with a few fields:
ext
- The extension that this plugin will match, e.g. "coffee"
default_config
(optional)- Default config which will be extended and passed in as the
config
argument to thecompiler
function
- Default config which will be extended and passed in as the
compiler(filename, config, context, cb)
- A function that should transform some source file and call back with an object
{content_type, compiled}
- A function that should transform some source file and call back with an object
Here's a simple plugin that reads and reverses a text file:
var fs = require('fs');
module.exports = {
ext: 'txt',
compile: function(filename, config, context, cb) {
fs.readFile(filename, function(err, source) {
if (err)
return cb(err);
else {
source = source.toString();
reversed = source.split('').reverse().join('')
cb(null, {
content_type: 'text/plain',
compiled: reversed
});
}
});
}
};
By passing an object of compilers to the metaserve middleware, paths that match the extension key (here "txt") will be run through this plugin:
app.use(metaserve('./app', {
txt: require('./reverse-plugin')
}));
Default Plugins
- metaserve-js-coffee-reactify: Javascript via CoffeeScript with React (JSX) support
- metaserve-css-styl: CSS via Styl with several Rework plugins
- metaserve-html-jade: HTML via Jade
Notes
- Not to be confused with the real definition of a Metalanguage.