
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
resharper-vs-code-bridge
Advanced tools
Bridges the gap between the ReSharper CLI's code inspection tools and Visual Studio Code's Problem Matchers to allow ReSharper issues to be exposed in the Visual Studio Code IDE
This is an extremely shabby attempt at getting ReSharper's inspections into Visual Studio Code now that JetBrains have expressed no interest in bringing ReSharper across officially.
npm i -D resharper-vs-code-bridge.vscode\tasks.json as follows:{
"label": "inspect",
"command": "node",
"type": "process",
"args": [
"node_modules\\resharper-vs-code-bridge",
"MySolution.sln"
],
"problemMatcher": {
"owner": "resharper-vs-code-bridge",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": {
"regexp": "Code=\"(.+?)\" Severity=\"(.+?)\" File=\"(.+?)\" Line=\"(.+?)\" Message=\"(.+?)\"",
"code": 1,
"severity": 2,
"file": 3,
"line": 4,
"message": 5
}
}
}
inspect task from the Tasks -> Run Task... menu in VS CodeThe task itself simply runs the resharper-vs-code-bridge NodeJS package, listens for output on STDOUT and then parses it with the provided regex pattern in order to extract code inspection issues and pass them to the IDE.
The package takes one required argument and another optional one. For example:
node node_modules\\resharper-vs-code-bridge MySolution.sln InspectCode.exe
Where:
MySolution.sln is a required argument defining the path to the solution to inspect relative to the root of your workspaceInspectCode.exe is an optional argument (default value is InspectCode.exe) that defines where the package can find ReSharper's executable. This is not required if the PATH was set up as explained above.The package then does the following:
InspectCode.exe for the solution you defined and outputs the report as a temporary XML file in the root of your workspaceFAQs
Bridges the gap between the ReSharper CLI's code inspection tools and Visual Studio Code's Problem Matchers to allow ReSharper issues to be exposed in the Visual Studio Code IDE
The npm package resharper-vs-code-bridge receives a total of 8 weekly downloads. As such, resharper-vs-code-bridge popularity was classified as not popular.
We found that resharper-vs-code-bridge demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.