Skip to content

Instantly share code, notes, and snippets.

@budasuyasa
Created May 6, 2018 01:46
Show Gist options
  • Save budasuyasa/aa329550aa36580cc440ef8f36fcfc7f to your computer and use it in GitHub Desktop.
Save budasuyasa/aa329550aa36580cc440ef8f36fcfc7f to your computer and use it in GitHub Desktop.
Hello World
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello World');
})
app.listen(3000, () => console.log("server berjalan pada http://localhost:3000"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment