fsjs
Tiny opiniated web framework for node that relies heavily on fs. If watch doesn't work, oops.
require('fsjs')(8000)
exports.get = function(callback){
callback('Hello World')
}
Installation
$ npm install -g fsjs
What it does
fsjs watches the current application's entry point directory for changes, and requires all files ending with '.js'
$ ls
edit.js
app.js
$ cat app.js
require('fsjs')(8000)
$ node app.js
It handles urls like '/edit/master' by calling edit.js's exported method
exports.get = function(branch,callback) {
console.log(branch)
callback('Edited!')
}
The default callback writes the data to res, stringifying it if it is an object. You can pass your own callback if you like (in your main file, say app.js):
require('fsjs')(8000,function(data,defaultCallback){
defaultCallback('<!doctype html>'+JSON.stringify(data))
})
You can also pass names for arguments in the url before the module name:
require('fsjs')(8000,'user','repo',callback)
They are passed as properties of this to your module, so '/arpith/fsjs/edit/master/README.md' can be handled by edit.js:
exports.get = function(branch,file) {
var callback = arguments[arguments.length-1]
console.log(this.user)
console.log(this.repo)
console.log(branch)
console.log(file)
callback('done')
}
It also handles smaller urls (say '/arpith/edit') as expected:
exports.get = function(){
console.log(this.user)
console.log(this.repo)
}
Finally, this also has the request and response that http.createServer passes:
exports.get = function(){
console.log(this.request.url)
console.log(this.response.statusCode)
}
License
The MIT License (MIT)
Copyright (c) 2013 Arpith Siromoney arpith@feedreader.co
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.