access to static file nodejs

Create a folder to store your static files, such as images, CSS, or JavaScript files.

Use the built-in express.static middleware function in Node.js to serve the static files.

Specify the directory from which to serve the static files using the express.static function.

Mount the static file server at the specified path using the app.use method in your Node.js application.

Access the static files on the specified path in your Node.js application.