Created
May 26, 2017 23:31
-
-
Save Kamilnaja/39a33222524f746b5c8745f9b97f0b6e to your computer and use it in GitHub Desktop.
This file contains 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) { | |
var number = 200; | |
res.status(number).send("hello World"); | |
}); | |
app.listen(3000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment