Answers for "node js start server command"

9

start node.js server

## Make sure you run this command in the app directory.
node .
Posted by: Guest on October-26-2021
0

how to start a node server

// app.js

const http = require('http');
const fs = require('fs')

// Create an instance of the http server to handle HTTP requests
let app = http.createServer((req, res) => {
    // Set a response type of plain text for the response
    res.writeHead(200, {'Content-Type': 'text/html'});
    fs.createReadStream('index.html').pipe(res)
});

// Start the server on port 3000
app.listen(3000, '127.0.0.1');
console.log('Node server running on port 3000');
Posted by: Guest on December-30-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language