express what is code example
Example 1: express.js server
/* ====== create node.js server with express.js framework ====== */
// dependencies
const express = require("express");
const app = express();
app.get("/", (req, res) => {
res.send("This is home page.");
});
app.post("/", (req, res) => {
res.send("This is home page with post request.");
});
// PORT
const PORT = 3000;
app.listen(PORT, () => {
console.log(`Server is running on PORT: ${PORT}`);
});
// ======== Instructions ========
// save this as index.js
// you have to download and install node.js on your machine
// open terminal or command prompt
// type node index.js
// find your server at http://localhost:3000
Example 2: express and node
// Load HTTP module
const http = require("http");
const hostname = "127.0.0.1";
const port = 8000;
// Create HTTP server
const server = http.createServer((req, res) => {
// Set the response HTTP header with HTTP status and Content type
res.writeHead(200, {'Content-Type': 'text/plain'});
// Send the response body "Hello World"
res.end('Hello World\n');
});
// Prints a log once the server starts listening
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
})
Example 3: express
npm install express
npm install express --save
Docs : https://expressjs.com/
- Example API : https://jareer.xyz/ -
Example 4: express js
Express is a minimal and flexible Node.js web application framework
that provides a robust set of features for web and mobile
applications.
Example 5: what is express.js
Express is a minimal and flexible Node.js web application framework
that provides a robust set of features for web and mobile
applications.
Example 6: node express
npm install express --save