Posts by Danilo da Silva • 1 point
1 post
-
-3
votes2
answers4742
viewsA: What is the "res.send()" command for in Express?
@Monitorlpi Basically this is code to run a Node server on port 3000: const express = require('express') const app = express() app.get('/', (req, res) => { res.send('<h1>Olá…