STSOHAM TRIPATHYincreating-express-server.hashnode.dev·Jan 8, 2025 · 1 min readCreating Express Serverconst port = 3000; app.listen(port, () => { console.log(`Server is running on <http://localhost>:${port}`); }); Port: port is a variable that stores the port number where our server will listen for incoming requests .for example let port = 3000. T...00
STSOHAM TRIPATHYinsql-vs-nosql.hashnode.dev·Jan 4, 2025 · 2 min readSQL VS No SQLToday’s discussion is all about SQL vs No SQL .In industry which type of database will be used by the company that is most important. To figure out We need to understand what type of data we have, specifically if we want to store some data which can ...00