README
var pilot = require("pilot");
pilot.addController("hello", {
elements: function(elements) {
elements.append("Hello World");
}
});
pilot.attach(document.body);
<html>
<head>
</head>
<body>
<!--spc:hello-->
<!--epc:hello-->
</body>
</html>