- Does
rubysettings.js
exist inC:\Users\thakusu\Desktop\Ruby_Project\NodeRed\
? - Does the account you run node-red with have access to user
thakusu
desktop folder?
impossible to help if you dont provide a copy of your custom settings.js file.
If you are running node-red from source...
Open the project folder then
- VSCODE: Modify launch.json ...
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"env": { "NODE_ENV": "development" },
"preLaunchTask": "npm: build-dev",
"program": "${workspaceFolder}\\packages\\node_modules\\node-red\\red.js"
}
]
}
- VSCODE: Add an entry in tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build-dev",
"group": "build",
"problemMatcher": [],
"label": "npm: build-dev",
"detail": "build-dev"
}
]
}
- Press F5 to start debugging