If the below line is used in the javascript code:const express = require(express); then autocomplete / intellisense will not work. It will not display the relevant methods as shown in the image below. This is the correct code to use:const express = require("express"); The quotation marks make the difference and the following image shows the … Continue reading How to fix issue if autocomplete or intellisense does not work in vscode for express.js
Tag: fix
Remove a broken package on Ubuntu
To remove a broken package, open a terminal window and enter following command: $ sudo dpkg --remove package-name <enter> where package-name is the broken package to be removed.