Hey Programmers, Welcome to the Another JavaScript Project, In this Blog We Will Be Creating a Web Sever Using Node.js. If you Don’t Know What is Node.js Then In Simple Words Node.js is an open-source, cross-platform, back-end JavaScript runtime environment that runs on the V8 engine and executes JavaScript code outside a web browser, which was designed to build scalable network applications.
Also Read:
• Realtime Chat Application Socket.io
• Email Automation Using Python
• Password Validation Using JavaScript
For Creating this Project You Need to Install Node.js In Your Computer.
What Is Web Server?
A Web Server is a Server Which Accepts Requests Via HTTP (Hyper Text Transfer Protocol) Or Secure Version HTTPS Text Transfer Protocol Secure)
This Web Server Runs In your Local System It Uses a Port Called Port 3000.
Server.Js File
const http = require('http')
const port = 3000
const server = http.createServer(function(req ,res){
res.write('Web Server In Node.js')
res.end()
})
server.listen(port, function(error) {
if (error) {
console.log('Something Went Wrong', error)
}
else{
console.log('Sever Started Sucessfully', + port)
}
})
So This Was It For Todays Blog See You In the Next One Till Then Keep Coding Keep Exploring!
- The JS Developer’s Podcast [EP: 2] Variables and Data Manipulation - October 15, 2024
- YouTube Channels to Learn Coding: Top 9 Picks That Will Make a You Master - October 10, 2024
- The JS Developer’s Podcast [EP: 1] Introduction to JavaScript - September 27, 2024
Pingback: Keylogger Using Python - Mr Programmer
Pingback: 10 Web Development Projects With Source Codes! - Mr Programmer