npx eslint --init- Morgan: helps in logging server requests (dev and prod)
- Helmet: removes unnecessary default server response and adds useful (most) secure headers
- Cors: good ol' cors, allows access to make server requests
app.use(morgan("common"))
app.use(helmet())
app.use(cors({ origin: 'http://localhost:4002' }))