Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 676 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 676 Bytes

What

Replaces drvfs mountpoints with Windows pathnames in Error stacktraces when using node under the Windows Subsystem for Linux

Why 🤔

I use https://github.com/Microsoft/vscode and develop under WSL. When I see stacktraces, I'd like to be able to click to jump to a UGH:\dir\file.js:line spot.

How

Error.prepareStackTrace = require('wsl-drvfs-stack-formatter');

But

If you're not under WSL, this is a no-op, so you don't need to include it conditionally.

If you already have another formatter, you can safely place this one after it, as it can cope with an existing one that returns a string.