Home > Enterprise >  NodeJs localhost:5000 cannot assces
NodeJs localhost:5000 cannot assces

Time:07-30

npm run dev

Unable to access localhost. It spins forever :(

Mycode

CodePudding user response:

You have to use cookieParser like this. You can refer docs here

app.use(cookieParser())
  • Related