When a developer's system suits the supported OSs (Linux, MacOS and Win32) and architectures (x86_64) the embedded Node.js from Wild Web Developer will be used by WildWebDeveloper to run language Servers as well as for Node Debugger unless the "org.eclipse.wildwebdeveloper.nodeJSLocation"
system property is set.
(From eclipse-wildwebdeveloper#331 (comment) )
- Right-click on project > Properties > Builders
- Click "New", select "Program"
- location => path to tsc (can be
${system_path:tsc}
; working directory => project directory (can be${project_loc}
); arguments... - In Build Options a. select "Launch in background" b. select "During auto-build" c. select the interesting typescript source folder in "Select working set of relevant resources" to include the source folder.
- in Refresh, select what needs to be refreshed upon build.
- Ensure the
sourceMap
property of yourtsconfig.json
is set totrue
. Exampletsconfig.json
:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "out",
"sourceMap": true
}
}
- Run
tsc
to transpile your TypeScript source code to JavaScript. - Right click on TypeScript you want to debug (eg.
index.ts
) => Debug as => Node program - If a breakpoint is set in your
.ts
source file, it will be hit when the equivalent JavaScript code is run.
- Ensure the
sourceMap
property of yourtsconfig.json
is set totrue
. Exampletsconfig.json
:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "out",
"sourceMap": true
}
}
- Run
tsc
to transpile your TypeScript source code to JavaScript. - Right click on the entry point of your website (eg.
index.html
) => Debug as => Chrome Debug - If a breakpoint is set in your
.ts
source file, it will be hit when the equivalent JavaScript code is run.
- Start your web app's Node.JS web server (usually done through a NPM script in your package.json, eg.
npm start
). This can be done through the commandline or by right-clicking on a package.json in the Project Explorer => Run as => NPM... - Once your web app is running, take note of the local URL it's running on. For React project's, it's by default
http://localhost:3000/
- Right click on your project's root directory in the Project Explorer => Debug as => Debug configurations...
- Create a launch or attach debug configuration for Chrome or Firefox, depending on your preference.
- For launch debug configurations, select the URL radio button and enter the URL from step 2. For attach debug configurations, simply enter the URL from step 2.
- Ensure the working directory is correctly set to your project's root folder.
- Click
apply
followed bydebug
in the bottom right corner of the debug configuration
- Open the HTML file with the Generic Editor for edition.
- From the Edition context menu, the Project Explorer or other explorer, open this same HTML file with the Internal Web Browser.
- Drag the editor/browser to get them side by side or stacked one on top of the other in the IDE.
- In the Web Browser, click the arrow besides the refresh button, and select "Auto-refersh local changes"
Developers may reuse the Node.js Embedder in their products.