,

Setting up a Node.js server with Express.js to serve static files from directory ‘p’

Posted by

Node.js Server Setup with Express.js

Setting up a Node.js server with Express.js

Node.js is a popular JavaScript runtime that allows developers to build server-side applications using JavaScript. Express.js is a minimalist web framework for Node.js that simplifies the process of building web applications.

Step 1: Install Node.js

To begin, make sure you have Node.js installed on your system. You can download and install Node.js from the official website: https://nodejs.org/

Step 2: Create a new directory for your project

Open your terminal and create a new directory for your Node.js project:

mkdir express-server

Step 3: Install Express.js

Change into the newly created directory and install Express.js using npm:

cd express-server
npm install express

Step 4: Create a new file for your server

Create a new file named server.js in your project directory and add the following code:

        
            const express = require('express');
            const app = express();

            // Serve static files from the 'public' directory
            app.use(express.static('public'));

            // Start the server on port 3000
            app.listen(3000, () => {
                console.log('Server is running on http://localhost:3000');
            });
        
    

Step 5: Create a directory for your static files

Create a new directory named public in your project directory. This is where you will store your static files (HTML, CSS, JavaScript, images, etc).

Step 6: Start the server

Run the following command in your terminal to start the Express.js server:

node server.js

Your server should now be running on http://localhost:3000, serving static files from the ‘public’ directory. You can access your files by navigating to http://localhost:3000 in your web browser.

Conclusion

Setting up a Node.js server with Express.js is a simple and straightforward process. By following these steps, you can quickly create a server that serves static files from a designated directory. Happy coding!

0 0 votes
Article Rating

Leave a Reply

2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
@IFprogrammingANDcoding
20 days ago

This code is a Node.js server setup using Express.js framework, which serves static files from a directory named 'public'. It also establishes a connection to a MySQL database.

Here's a breakdown of what each part does:

Express Setup:
const express = require('express');: Imports the Express.js framework.
const app = express();: Creates an instance of the Express application.

Serve Static Files:
app.use(express.static('public'));: This line tells Express to serve static files from the 'public' directory. Static files include HTML, CSS, JavaScript, images, etc. This allows you to serve your frontend files like HTML, CSS, and client-side JavaScript.

MySQL Connection:
const mysql = require('mysql');: Imports the MySQL module.
const connection = mysql.createConnection({ … });: Creates a connection to a MySQL database. You specify the host, username, password, and database name in the configuration object.
connection.connect((err) => { … });: Attempts to connect to the MySQL database. If an error occurs during the connection process, it logs the error message. Otherwise, it logs a success message with the connection thread ID.

Start Server:
const PORT = 5500;: Specifies the port number on which the server will listen for incoming requests.
app.listen(PORT, () => { … });: Starts the Express server and listens for incoming requests on the specified port. Once the server is started, it logs a message indicating that the server is running and the URL at which it is accessible.

To use this code:

Make sure you have Node.js and npm (Node Package Manager) installed on your system.
Create a directory for your project and navigate into it using the terminal.
Initialize a new Node.js project by running npm init and follow the prompts to create a package.json file.
Install Express and MySQL modules by running npm install express mysql in your project directory.
Create a 'public' directory and put your static files (HTML, CSS, JavaScript, etc.) inside it.
Create a file named 'server.js' and paste the provided code into it.
Replace 'localhost', 'root', 'password', and 'hospital' with your actual MySQL database credentials and database name.
Run your server by executing node server.js in the terminal.
Access your server in the browser by navigating to http://localhost:5500/.

This setup will serve your static files from the 'public' directory and establish a connection to your MySQL database. The server will listen for incoming HTTP requests on port 5500.

@IFprogrammingANDcoding
20 days ago

i enter http://localhost:5500/ now, here is my code: // server.js // start server and connect http://localhost:5500/
const express = require('express');
const mysql = require('mysql');

const app = express();

app.use(express.static('public'));

// Establish MySQL connection
const connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'password',
database: 'hospital'
});

// Connect to MySQL
connection.connect((err) => {
if (err) {
console.error('Error connecting to MySQL: ' + err.stack);
return;
}
console.log('Connected to MySQL as id ' + connection.threadId);
});

// Start the server
const PORT = 5500;
app.listen(PORT, () => {
console.log(Server is running on http://localhost:${PORT});
});

2
0
Would love your thoughts, please comment.x
()
x