Decided to give trunk a try so that I could play with require() from within views today and I've ran into a couple issues.
- It appears that views are sandboxed to a very small section of the
design doc (views/lib/*). Why is this?
- For a reason that I've not been able to figure out, module.exports
doesn't work for functions. eg:
exports.foo = "asdf"
Produces {"foo": "asdf" } but:
exports.foo = function() {}
Produces { }
Any ideas?
