All Questions
117 questions
0
votes
0
answers
38
views
Why does my Node.js application not stop when using --inspect?
I have the following Node.js application here:
const express = require("express")
const bodyParser = require("body-parser")
const mysql = require("mysql2")
const path = ...
1
vote
0
answers
91
views
How to debug TypeScript in Expo Managed React Native with WebStorm
I'm trying to debug a React Native Expo Managed project with Custom Dev Client. It's a TypeScript project and I want to be able to hit breakpoints when debugging.
I can't get the breakpoints to hit, I'...
0
votes
0
answers
356
views
Debug does not work in IntelliJ IDEA after node version has been changed by NVM
When I install node from nvm all been okay. But after switching node to another version the debugger stopped working. Now you need to click on the link in the log to run the debugger in a separate ...
10
votes
2
answers
1k
views
Node.js Debugger ends as soon as it is attached
I'm currently using WebStorm as IDE and my project uses pm2 as process manager. The structure of my ecosystem is the following:
module.exports = {
name: 'myProject',
cwd: __dirname,
script: 'npm'...
1
vote
0
answers
114
views
Cannot step into code at breakpoints in WebStorm
I write some JavaScript code in WebStorm. I can't step into code at breakpoints at line 3, but I can do this at line 10.
I expect to be able to step into code at both breakpoints.
0
votes
0
answers
202
views
WebStorm starts with DEBUG mode, exit with "Process finished with exit code -1073741819 (0xC0000005)"
[Windows] WebStorm starts with DEBUG mode, exit with "Process finished with exit code -1073741819 (0xC0000005)", but when I starts with RUN mode, it won't happen.
4
votes
1
answer
564
views
Unable to debug Node.js application in WebStorm using Serverless
I am currently creating a lambda function in Node.js and want to debug the code locally. I am using WebStorm as my IDE.
In my serverless.yml
service: applicationsync
frameworkVersion: '3'
provider:
...
0
votes
1
answer
377
views
Is there any way to use external libraries in WebStorm debugger?
I want to test my code with lodash library, but WebStorm debugger doesn't recognize import statement of my code and throws ReferenceError.
Also it throws SyntaxError when I use import statement in the ...
0
votes
1
answer
788
views
I am unable to debug in WebStorm npm configuration
I am running a Node app with an npm configuration in WebStorm but I cannot debug, I keep getting the error below.
I have a clean system with node 16.5.0 installed along with npm
The app runs or when ...
0
votes
1
answer
1k
views
How do I set up PhpStorm/WebStorm to work with Node.js in a docker container?
I am trying to use PhpStorm to debug as Node application that is running in a docker container. The image is called parsoid-dev, it only exists locally on my machine. I can run it using docker run ...
1
vote
1
answer
489
views
Debug HTTP request in node.js Express using PhpStorm
I created a node.js Express app using PhpStorm v2021.1 (File -> New Project -> Express) and when I run it (localhost:3000) it runs successfully.
Then I want to debug my app API that respond to a ...
1
vote
0
answers
793
views
Debugging TypeScript Node project in WebStorm does not stop at breakpoints
I am failing to debug TypeScript Node.js app. When running WebStorm debugger it executes my index.ts file but it does not stop at the breakpoints.
I get in the console:
Debugger listening on ws://127....
1
vote
0
answers
166
views
How can I debug source jsx code in WebStorm
I have React project. It's works fine, and program compiled successfully.
I want to use JavaScript debugger from WebStorm. All params you can see in the picture.
It's connecting to my app, but I do ...
1
vote
2
answers
1k
views
How to run a JavaScript solution from HackerRank on Idea / WebStorm IDE?
Say you want to run / debug a HackerRank solution locally on your WebStorm / IntelliJ Idea IDE for for macOS before submitting it. What are the needed steps, considering node.js is already installed ...
0
votes
1
answer
1k
views
Node.js WebStorm remote debugging not working (without SSH tunnel)
I'm trying to debug on a live server running a Node.js webserver (Express, TypeScript).
I run the node server with NODE_ENV=development node --inspect=9229 --inspect-brk build/start.js, and it says ...