Hello world example
const express = require("express");const app = express();const port = 3000;
app.get("/", (req, res) => { res.send("Hello World!");});
app.listen(port, () => { console.log(`Example app listening on port ${port}`);});This app starts a server and listens on port 3000 for connections. The app responds with “Hello World!” for requests
to the root URL (/) or route. For every other path, it will respond with a 404 Not Found.
The example above is actually a working server: Go ahead and click on the URL shown. You’ll get a response, with real-time logs on the page, and any changes you make will be reflected in real time. This is powered by RunKit, which provides an interactive JavaScript playground connected to a complete Node environment that runs in your web browser. Below are instructions for running the same app on your local machine.
Running Locally
First create a directory named myapp, change to it and run npm init. Then, install express as a dependency, as per the installation guide.
In the myapp directory, create a file named app.js and copy the code from the example above.
Run the app with the following command:
node app.jsbun app.jsThen, load http://localhost:3000/ in a browser to see the output.