Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created April 22, 2010 06:32
Show Gist options
  • Save jpoz/374896 to your computer and use it in GitHub Desktop.
Save jpoz/374896 to your computer and use it in GitHub Desktop.
var kiwi = require('kiwi')
kiwi.require('express')
get('/', function(){
this.redirect('/hello/world')
})
get('/hello/world', function(){
return 'Hello World'
})
run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment