Skip to content

Instantly share code, notes, and snippets.

@vickonrails
Created February 1, 2018 19:22
Show Gist options
  • Select an option

  • Save vickonrails/0f59d7bfbe53d7cb14b9392bd79cbef8 to your computer and use it in GitHub Desktop.

Select an option

Save vickonrails/0f59d7bfbe53d7cb14b9392bd79cbef8 to your computer and use it in GitHub Desktop.
const express = require('express'),
app = express();
app.get('/',(request,response)=>{
response.send(‘Hello world’);
});
//Binding the server to a port(3000)
app.listen(3000,()=>console.log(‘express server started at port 300’));
@dev-drprasad

dev-drprasad commented Feb 17, 2018

Copy link
Copy Markdown

you missed one 0 at end of console.log.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment