view 1__Development/6__Website/node_modules/express/test.js @ 5:e73fbbcb5fd2

Persisting basic graph works, starting to add persist of view hierarchy too
author Sean Halle <seanhalle@yahoo.com>
date Sun, 03 Aug 2014 23:38:15 -0700
parents
children
line source
1 var app = require('./index')()
2 app.get('/iamaverylongcomponent/in_a_url/you_said_didnt_work', function (req, res) {
3 res.send('got long url')
4 })
5 app.get('/IamUSINGcaps', function (req, res) {
6 res.send('got caps matching')
7 })
8 app.listen(3333)