Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cjgiridhar
Last active December 14, 2015 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjgiridhar/5045567 to your computer and use it in GitHub Desktop.
Save cjgiridhar/5045567 to your computer and use it in GitHub Desktop.
Express - helloworld example
var express = require('express');
var appln = express();
appln.get('/', function(request, response){
response.set('Content-Type', 'text/plain');
response.send('hello world');
});
appln.listen(3000);
appln.set('Hello', 'Express Node');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment