You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.nodeclipse.debug/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,11 @@ Open `plugin.xml`, in "Testing" section click "Launch an Eclipse application"
17
17
2. create new `public class LaunchShortcutName implements ILaunchShortcut`
18
18
19
19
20
-
## TODO notes
20
+
## notes
21
21
22
-
debug port 5858 is hard-coded
22
+
debug port 5858 was hard-coded
23
23
24
-
in 2 classes: [LaunchConfigurationDelegate](https://github.com/Nodeclipse/nodeclipse-1/blob/master/org.nodeclipse.debug/src/org/nodeclipse/debug/launch/LaunchConfigurationDelegate.java)
24
+
in 2 classes: [LaunchConfigurationDelegate.java](https://github.com/Nodeclipse/nodeclipse-1/blob/master/org.nodeclipse.debug/src/org/nodeclipse/debug/launch/LaunchConfigurationDelegate.java)
<p>Included in <ahref="nodeclipse.org/enide">Enide</a> since 0.4.20</p>
77
-
78
-
<p>It has XText dependency, that can usually be automatically resolved by Eclipse (that was downloaded from eclipse.org)</p>
79
-
80
-
<p>for other Eclipse distributions use Enide or install prior from <ahref="http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/">http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/</a></p>
73
+
<p>Title: Nodeclipse Online Help - CoffeeScript </p>
<p>Included in <ahref="www.nodeclipse.org\.enide.md.html">Enide</a> since 0.4.20</p>
76
+
<p>It has XText dependency, that can usually be automatically resolved by Eclipse (that was downloaded from eclipse.org)</p>
77
+
<p>for other Eclipse distributions use Enide or install prior from <ahref="http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/">http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/</a></p>
78
+
<h3><aname="hello-world-server-in-coffeescript" class="anchor" href="..md.html#hello-world-server-in-coffeescript"><spanclass="octicon octicon-link"></span></a>Hello world server in CoffeeScript</h3>
79
+
<pre><code>http = require 'http'
80
+
81
+
http.createServer (req, res) ->
82
+
res.writeHead 200, {'Content-Type': 'text/plain'}
83
+
res.end 'Hello World\n'
84
+
.listen 1337, '127.0.0.1'
85
+
86
+
console.log 'Server running at http://127.0.0.1:1337/'
<p>Nodeclipse since version 0.6 allows to run and debug .coffee file directly. Node.js command line tool 'coffee' is used. Note that when debugging, source map are not implemeted, and execution start from this coffee tool that compiles your module. Stay in Node perspective until compilation to see your modules appear in V8 virtual project. Then open those files and set breakpoints.</p>
0 commit comments