CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 15 Aug 2025 21:40:22 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100419201411
location: https://web.archive.org/web/20100419201411/https://github.com/creationix/node-router
server-timing: captures_list;dur=2.173914, exclusion.robots;dur=0.026736, exclusion.robots.policy;dur=0.011705, esindex;dur=0.013260, cdx.remote;dur=28.209077, LoadShardBlock;dur=273.886016, PetaboxLoader3.datanode;dur=123.648442, PetaboxLoader3.resolve;dur=96.894357
x-app-server: wwwb-app220
x-ts: 302
x-tr: 341
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app220; 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=()
HTTP/2 200
server: nginx
date: Fri, 15 Aug 2025 21:40:23 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 19 Apr 2010 20:14:11 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "fa68ec69868ec25def46a625ffd6e916"
x-archive-orig-x-runtime: 188ms
x-archive-orig-content-length: 20239
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 20:14:11 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 08 Oct 2009 10:29:15 GMT", ; rel="prev memento"; datetime="Tue, 30 Mar 2010 14:12:27 GMT", ; rel="memento"; datetime="Mon, 19 Apr 2010 20:14:11 GMT", ; rel="next memento"; datetime="Thu, 27 May 2010 07:28:15 GMT", ; rel="last memento"; datetime="Wed, 07 Dec 2022 05:09:55 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_20100419182149_crawl102-c/52_15_20100419201312_crawl101.arc.gz
server-timing: captures_list;dur=0.769062, exclusion.robots;dur=0.073232, exclusion.robots.policy;dur=0.015924, esindex;dur=0.016173, cdx.remote;dur=50.822927, LoadShardBlock;dur=381.645661, PetaboxLoader3.datanode;dur=142.715748, PetaboxLoader3.resolve;dur=343.248963, load_resource;dur=120.738350
x-app-server: wwwb-app220
x-ts: 200
x-tr: 633
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
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 master - GitHub
creationix / node-router
- Source
- Commits
- Network (8)
- Issues (0)
- Downloads (3)
- Wiki (1)
- Graphs
-
Branch:
master
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 16 22:47:57 -0700 2010 | typo [wozz] |
![]() |
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.