Launch NodeJS Server as administrator on Windows 10
Is it possible to launch a NodeJS server from Webstorm as administrator and how ?
My problem is that my node server is using a library that calls symlink fs methods.
runnerw.exe is not launched as administrator, so symlink fails.
Behavior is as expected when I manually launch my node server from command line.
Any idea ?
Please sign in to leave a comment.
you can run Webstorm itself with elevated permissions - processes run from WebStorm inherit WebStorm permissions. But I'd say that running as root is not a good practice.
Please see comments in https://youtrack.jetbrains.com/issue/WEB-11972 for possible workarounds
Thank you for the hints; it will help before releasing my app !