IT Nursery
I’m currently running a bunch of: sudo ssh -L PORT:IP:PORT root@IP where IP is the target of a secured machine, and PORT represents the ports I’m forwarding. This is...
  • May 31, 2022
  • 0 Comments
what is process.env.PORT || 3000 used for in Node.js? I saw this somewhere: app.set('port', process.env.PORT || 3000); If it is used to set 3000 as the listening port, can...
  • May 26, 2022
  • 0 Comments