annotate 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
rev   line source
seanhalle@5 1 var app = require('./index')()
seanhalle@5 2 app.get('/iamaverylongcomponent/in_a_url/you_said_didnt_work', function (req, res) {
seanhalle@5 3 res.send('got long url')
seanhalle@5 4 })
seanhalle@5 5 app.get('/IamUSINGcaps', function (req, res) {
seanhalle@5 6 res.send('got caps matching')
seanhalle@5 7 })
seanhalle@5 8 app.listen(3333)