Created
February 1, 2018 19:22
-
-
Save vickonrails/0f59d7bfbe53d7cb14b9392bd79cbef8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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’)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you missed one
0at end of console.log.