Skip to content

Instantly share code, notes, and snippets.

@sorskoot
Created March 3, 2017 07:42
Show Gist options
  • Save sorskoot/4ad2f03c643b4596cf1d7b8bd17cb856 to your computer and use it in GitHub Desktop.
Save sorskoot/4ad2f03c643b4596cf1d7b8bd17cb856 to your computer and use it in GitHub Desktop.
Getting started with Node.js on ChakraCore - Express.js example
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment