CARVIEW |
Select Language
HTTP/2 200
server: nginx
date: Sun, 17 Aug 2025 16:19:40 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 19 Apr 2010 12:40:20 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "7e60a276fada54d31f078e6ddcd212a0"
x-archive-orig-x-runtime: 123ms
x-archive-orig-content-length: 20689
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 19 Apr 2010 12:40:20 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 19 Apr 2010 12:40:20 GMT", ; rel="memento"; datetime="Mon, 19 Apr 2010 12:40:20 GMT", ; rel="next memento"; datetime="Sat, 19 Jun 2010 15:54:18 GMT", ; rel="last memento"; datetime="Thu, 02 Sep 2010 17:30:20 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_15_20100419122823_crawl101-c/52_15_20100419123857_crawl101.arc.gz
server-timing: captures_list;dur=0.924392, exclusion.robots;dur=0.028469, exclusion.robots.policy;dur=0.011813, esindex;dur=0.019036, cdx.remote;dur=12.520520, LoadShardBlock;dur=178.856432, PetaboxLoader3.datanode;dur=76.053642, PetaboxLoader3.resolve;dur=114.674998, load_resource;dur=118.092395
x-app-server: wwwb-app214
x-ts: 200
x-tr: 402
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app214; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
creationix's node-router at v0.0.3 - GitHub
creationix / node-router
- Source
- Commits
- Network (8)
- Issues (0)
- Downloads (3)
- Wiki (1)
- Graphs
-
Tag:
v0.0.3
click here to add a description
click here to add a homepage
Sending Request…
A simple http server for node.js that has sinatra like qualities. Ideal for generating web services via node. — Read more
name | age | message | |
---|---|---|---|
![]() |
README.markdown | Tue Apr 06 09:42:41 -0700 2010 | Remove cruft, update README and add license to ... [creationix] |
![]() |
hello_world.js | Fri Mar 26 15:49:34 -0700 2010 | Allow simple sync responses for html (strings) ... [creationix] |
![]() |
lib/ | Fri Apr 09 12:43:40 -0700 2010 | Add ttf to the list of known mime types. [creationix] |
![]() |
package.json | Sat Apr 10 10:24:26 -0700 2010 | Tag release 0.0.3 for node v0.1.90. [creationix] |
README.markdown
node-router
Node-router is a small simple node.js http server that makes building simple web-services super simple.
Node libraries
There are two ways to include this library in your node project. You can either copy the node-router.js file in the same directory as your script and require it with a relative path:
var NodeRouter = require('./node-router');
Or you can copy node-router.js
to somewhere in your require.paths
array. Then you can use a global require
like:
var NodeRouter = require('node-router');
See the node docs for more details.