ЖС
Size: a a a
DM
ЖС
DM
k
ЖС
k
DM
DM
DM
DM
DM
И
DM
DM
DM
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
// будем считать, что этот цикл - это типа реакт рендерит
for (let i=0; i<1e6; i++) {
Math.random()
}
res.send('')
})
app.listen(port, () => {
console.log(`Server started http://localhost:${port}`)
})
DM
DM
for (let i=0; i<3; i++) { fetch('http://localhost:3000') }
DM