Apply for Zend Framework Certification Training

NodeJs





npm i express 

const express = require('express')
const app = express();
port = 8000
app.get('/',(request,response)=>{
    response.send("Server is started....")
})

app.listen(port,()=>{
    console.log(`Server is running on ${port}`)
})

< First Getting Started With CodeIgniter URL Routing >



Ask a question



  • Question:
    {{questionlistdata.blog_question_description}}
    • Answer:
      {{answer.blog_answer_description  }}
    Replay to Question


Back to Top