Skip to content

Instantly share code, notes, and snippets.

@sabljakovich
Created April 13, 2020 18:52
Show Gist options
  • Save sabljakovich/d9aabb4cb1540df1e0ebe71b606adde2 to your computer and use it in GitHub Desktop.
Save sabljakovich/d9aabb4cb1540df1e0ebe71b606adde2 to your computer and use it in GitHub Desktop.
Hello Word - NodeJS and Express
const express = require('express');
const app = express();
app.use(express.json());
app.get('/', (req, res) => {
res.send( { 'ok': true });
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment