If I dont have to explicitly install a node pacakge to use it how do I get intellisense?
For example with express, I can
import express from "npm:express"
but how can I get VSCode to give me some intellisense for the package?3 Replies
For intellisense to work you need a copy of it on your computer. Unlike node, if you're missing local copies of dependencies when you attempt to run the code, it will download them first.
For vscode you can use this command
That command is installing them