Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created May 26, 2017 23:31
Show Gist options
  • Save Kamilnaja/39a33222524f746b5c8745f9b97f0b6e to your computer and use it in GitHub Desktop.
Save Kamilnaja/39a33222524f746b5c8745f9b97f0b6e to your computer and use it in GitHub Desktop.
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