If you follow JetBrains' Getting Started with Node.js in WebStorm instructions, node-express specific code is highlighted correctly. However if you create your own simple node-express project, e.g. using node-express' Guide, then express specific functions such as app.get() are underlined and marked with the following warning:
app.get()
Unresolved function or method get()
This happens even if you enable the following libraries under SettingsJavaScriptLibraries:
SettingsJavaScriptLibraries
How can I configure WebStorm to resolve node-express functions such as app.get()?
Instead of express definitelyTyped, use express types in your project:
npm install --save-dev @types/express
Alternatively, for yarn users:
yarn add --dev @types/express
2.1m questions
2.1m answers
60 comments
57.0k users