You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@chrisdias This is a bug in the starter kit. According the express API documentation http://expressjs.com/de/api.html#express you create an express app by calling the top level express() function. This is a top-level function and not an object constructor and it therefore should be called as a function.
I suggest to make a PR against the MERN starter kit.
Steps to Reproduce:
server/server.js
line 15
type inapp.
Result: textual completions (you don't get completions for Express)
express
and change instantiation to removenew
.Result: IntelliSense works.
The text was updated successfully, but these errors were encountered: