This is tutorial teach you how to reading files with Node.js.in the example we are not create the express server instead of that we created the http model inside the http model has createServer function.easy way to reading the in node js implementing the method fs.readFile
const http = require("http"); const fs = require("fs"); http.createServer((req,res)=> { fs.readFile("./index.html", (err,data)=>{ if(err) { res.end("Page not found") } else { res.end(data) } }) }).listen(4000,()=>{ console.log("Server Started"); })
File made as index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h1>Message 1</h1> </body> </html>
Have you ever wanted to talk to a friendly, smart robot that helps you with…
DeepSeek AI is becoming a friendly and powerful new tool in the world of artificial…
Do you want to become an expert in Spring Boot CRUD operations? This comprehensive tutorial…
Modern websites must have a navigation bar that is clear and responsive. FlexBox CSS is…
Introduction In this section, we will guide you step by step in the development of an image upload registration system in Java using MySQL and JDBC. In the application, users register…
The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…