Created
January 30, 2015 22:28
-
-
Save bnb/17e3408d117e9507ad64 to your computer and use it in GitHub Desktop.
Solution for Problem One of ExpressWorks that doesn't work.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require('express'); | |
| var app = express(); | |
| app.get('/', function(req, res) { | |
| res.end('Hello World!'); | |
| }); | |
| app.listen(process.argv[2]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment