Home > Enterprise >  Why there is a need to create a server in NodeJS application?
Why there is a need to create a server in NodeJS application?

Time:04-29

Learning Nodejs for my personal projects. Analysing other developers code examples, watching youtube videos. I noticed one thing that I don't understand completely, why most of nodejs examples I come across have a code part for http server initiation and port listening? But application itself not using any http related things like processing http requests/responses. For example:

const express = require('express')
const path = require('path')
const http = require('http')
const cors = require('cors')


const PORT = process.env.PORT || 5000
const app = express();
const server = http.createServer(app).listen(PORT, () => console.log(`Listening on ${PORT}\n`))
app.use(express.static(path.join(__dirname, 'public')))
app.use(cors({ credentials: true, origin: '*' }))

If my nodejs application is a script that needs to be run on server side that collects some information from other API's and stores in a database, etc., do I need to create and start HTTP server anyway?

CodePudding user response:

why most of nodejs examples I come across have a code part for http server initiation and port listening?

Because that's how people use nodejs most of the time: as a web server. Which doesn't mean it is mandatory or even a good practice.

do I need to create and start HTTP server anyway?

Of course not. Why would you do that if you don't need it? Do not worry about tutorials or examples, these don't know about your case and your needs.

  • Related