-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1306 lines (1208 loc) · 69.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: nil
title: Nodeclipse, Enide
---
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta content="nodeclipse,Nodeclipse,node.js,eclipse pulgin,ide,node,debug,phantomjs,jjs,nashorn,vert.x,maven,gradle,android" name="keywords">
<link type="image/x-icon" rel="icon" href="favicon.ico">
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="pipe.css">
<title>Nodeclipse, Enide -- Node.JS development in Eclipse</title>
<style>
ul {
padding: 0;
margin: 0;
font-size: 14px;
}
ol {
padding: 0;
margin: 0;
font-size: 14px;
}
</style>
</head>
<body class="int" id="logos">
<!--
<div class="displayed">
<a href="https://devoxx.us"><img src="./img/banners/devoxx_970X250.gif" align="middle" margin="auto"></a>
</div>
<div>
<table width="100%" align="center" valign="center">
<tr>
<td><a href="https://devoxx.us"><img src="./img/banners/devoxx_970X250.gif" align="middle"></a> </td>
</tr>
</table>
</div>
-->
<div id="intro" class="interior">
<!--
<div>
<a href="https://devoxx.us"><img src="./img/banners/devoxx_970X250.gif" width="582" height="150"></a>
<br>
</div>
-->
<div>
As Bintray repository service is shut down since May 2021,
Nodeclipse, Markdown Editor, Gradle Editor, CvsEdit and some other small project binaries are not available.
(<code>nodeclipse-1</code> update site archieves hosted on SourceForge is still available.)
Looking for maintainer for all or any specific project. Minimum new build and deployment to any host service are needed.
If you care to help, just raise <a href="https://github.com/Nodeclipse/nodeclipse.github.io/issues">GitHub issue</a>
</div>
<a href="/" title="Go back to the home page">
<img src="./img/eclipse48.png" alt="Enide Studio">
</a>
<a href="/" title="Go back to the home page">
<img id="logo" src="./img/nodejs-logo.png" alt="node">
</a>
</div>
<div id="content" class="clearfix">
<div id="column2" class="interior">
<ul>
<li><a href="/" class="home current">Home</a></li>
<li><a href="/projects" class="blog">Projects</a></li>
<li><a href="/community/" class="community">Community</a></li>
<li><a href="/share.html" class="docs">SHARE</a></li>
<li><a href="/artworks.html" class="logos">Logos</a></li>
<li><a href="/updates/" class="download">Download</a></li>
<li>{% include nodeclipse_install_button.html %}</li>
<li><a href="/enide" class="download">Enide</a></li>
<li><a href="/enide/2015" class="download">Enide Studio</a></li>
<li><a href="/restclient-tool/" class="blog">REST CLIENT</a></li>
<li><a href="/video">Video</a></li>
<li><a href="/news">News</a></li>
<li><a href="http://nodeclipse.uservoice.com/forums/216804-general" class="community">Ideas</a></li>
<li><a href="/feed.articles.xml">Feeds</a></li>
<li><a href="/history">History</a></li>
<li><a href="https://github.com/Nodeclipse/eclipse-node-ide/blob/master/Hints.md#hints">Hints</a></li>
<li><a href="https://github.com/Nodeclipse/nodeclipse-1/tree/master/org.nodeclipse.help/contents#intro">Help</a></li>
</ul>
<p class="twitter"><a href="http://twitter.com/share?url=http://www.nodeclipse.org&text=#nodeclipse #nodejs tooling with #eclipse" target="_blank">tweet</a></p>
</div>
<div id="column1" class="interior">
<!--
<div>
<a href="developers">
<img src="developers/PaulVerestExperienceInfographic021.png" />
</a>
</div>
-->
<h1>Nodeclipse & Enide</h1>
<p>at <a href="https://nodeclipse.github.io">https://nodeclipse.github.io</a> since 2018</p>
<p> /noʊdˈklɪps/ , AnIDE</p>
<!--
<p>
Nodeclipse is a plugin that
adds IDE functionality to the <a href="http://www.eclipse.org/">Eclipse</a>
for the <a href="http://www.nodejs.org/">Node.js</a>. <br>
The purpose of Nodeclipse is to create an environment in
which development of Node is easy for a beginner to professional user.
</p>
-->
<p><a href="/about">Clipse Node</a>. Bringing Node.js and Java worlds together since 2012.
Tools for JavaScript and Java: Node.js, Android, Gradle and
<a href="/projects">more</a>.</p>
<!-- Nodeclipse-1, CoffeeScript Editor, Maven, Gradle (with Android) plugins, Eclipse Node.js IDE and npm-proxy
{% include banner.html %}
-->
<p>
<img src="img/logos/Node-JS-logo.png" width="80" height="80"/>
<img src="img/logos/100px-Android_robot.svg.png" width="80" height="80"/>
<img src="img/logos/gradle-icon-128x128.png" width="80" height="80"/>
<img src="img/logos/250px-AngularJS_logo.svg.png" width="200" height="80"/>
<img src="img/logos/maven-owl-logo.png" width="80" height="80"/>
<img src="img/list/protoEditor-logo.png" width="80" height="80"/>
<a href="https://www.graalvm.org/">
<img src="https://www.graalvm.org/resources/img/logo-colored.svg" width="80" height="80"/>
</a>
</p>
{% include enide-2015-downloads.html %}<br>
<!--
<h3>Links</h3>
<p>
<a href="/demos/navigation">Navigation Demo</a>.
<a href="/features">Features</a>.
<a href="/history">History</a>.
<a href="/usage">Usage</a>.
<a href="/updates">Download</a>.
<a href="/#support">Support</a>.
<a href="/support-us">Support us</a>.
</p>
-->
{% include navigation-links.html %}
<h3>Developed by</h3>
<ul>
<li>Paul Verest
<a href="https://cn.linkedin.com/in/paul-verest-10564510">connect on LinkedIn</a>,
<a href="https://twitter.com/PaulVerest">connect on Twitter</a>,
meet on <a href="http://szjug.github.io/">SZJUG</a>, <a href="http://TEDxShenzhen.github.io/">TEDxShenzhen</a>.
</li>
<ul>
<li>If you are in <a href="https://en.wikipedia.org/wiki/Shenzhen">Shenzhen 深圳</a> or Hong Kong
and would you like to talk about tech and what You do, <a href="callto://pverest">skype me</a>
or come to <a href="http://szjug.github.io/">our monthly meetings</a>.
</li>
<!--
<li>CN: 如果你在<a href="http://szjug.github.io/">深圳</a>或者香港并意愿谈谈技术和你做的项目,欢迎欢迎<a href="callto://pverest">联系我</a></li>
<li>DE: Ja, auch auf Deutsch <a href="callto://pverest">geht es</a></li>
<a href="http://szjug.github.io/conference"><img src="http://szjug.github.io/images/ecommerceday.jpg"/></a>
<a href="http://coderetreat-china.github.io/shenzhen"><img src="http://coderetreat-china.github.io/images/logo/cnlogo.png" width="450" height="80"/></a>
-->
</ul>
<li>Tomoyuki Inagaki</li>
<li>Lamb Gao</li>
<li>see other <a href="https://github.com/nodeclipse/nodeclipse-1/">contributors</a>.
Note that included and referenced plugins may have their own authors,
see <a href="/history">history page</a>.</li>
</ul>
<h3><a name="supported-by" class="anchor" href="#supported-by"></a>BIG THANKS to</h3>
<p><img src="img/logos/funshion_logo_d2317cc5.gif"/>
<a href="http://www.fun.tv/">Funshion Online
http://www.fun.tv/
</a> that let Paul devote some personal research time for Nodeclipse development in 2012-2015.</p>
<p>Funshion Online is company in China (now part of <a href="http://www.smg.cn/">Shanghai Media Group</a>)<br/>
serving Video content to 500 000 000+ users and is using Node.js.
</p>
<!--
<p>Funshion Online sponsors by allowing Paul Verest to spend some of his 20%
self-development time on this open source project.</p>
<h3><a name="friendly-links" class="anchor" href="#friendly-links"></a>Friendly Links</h3>
<p> <img src="img/logos/windroy_50x50.png" width="50" height="50"/>
<a href="http://www.windroy.com/">Windroy</a> and <a href="http://www.windroye.com/">Windroye</a>
let you run Android apps on Windows systems.
</p>
-->
<h3><a name="news" class="anchor" href="#news"></a>
<a href="/#news">News and Announcements</a></h3>
<!--
<p>
See AnIDE at<br/>
<a href="https://yoopay.cn/event/58458792?ref=nodeclipse">
<img src="img/events/TianAnMen-600x78-Beijing-Spring-UG-event-2014-04-12.jpg"/></a>
</p>
<p><a href="community/newsletter">Subscribe for newsletter.</a></p>
-->
<!--
<p>
<a href="http://www.linkedin.com/groups/Nodeclipse-project-is-looking-partners-2906459.S.5877307858806136835">Looking for partners</a>.
</p>
-->
<p>
2020-10-17 Nodeclipse is to migrate to other host soon as *.github.io/ sites are not available in China without VPN.
See/comment in <a href="https://github.com/Nodeclipse/nodeclipse.github.io/issues/13">https://github.com/Nodeclipse/nodeclipse.github.io/issues/13</a>.
</p>
<p>
2019-03-26 Check WWD:
<a href="https://marketplace.eclipse.org/content/eclipse-wild-web-developer-html-css-javascript-typescript-json-yaml-xml-nodejs">
Eclipse Wild Web Developer - HTML, CSS, JavaScript, TypeScript, JSON, YAML, XML, Node.js...
<img src="https://marketplace.eclipse.org/sites/default/files/styles/ds_medium/public/wild-web-developer-marketplace-logo.png"/>
</a><br/>
.
</p>
<p>
2019-03-26 nodeclipse.org name is not usable again this year (3rd time now).
Checking most of <a href="https://marketplace.eclipse.org/user/pverest/listings">Eclipse marketplace listings</a><br/>
that they use <code>https://nodeclipse.github.io/</code>.
Comment in <a href="https://github.com/Nodeclipse/nodeclipse.github.io/issues/1">nodeclipse.github.io#1</a>.
</p>
<p>
2019-03-26 Have you tried <a href="https://ascii-uml.github.io/#eclipse">ASCII for UMLing?
<img src="https://ascii-uml.github.io/images/ASCII-UML-logo.png"/>
</a>
</p>
<p>
2018-03-26 Migrating from <a href="http://nodeclipse.org">nodeclipse.org</a><br/>
to <a href="https://nodeclipse.github.io">https://nodeclipse.github.io</a><br/>
See <a href="https://github.com/Nodeclipse/nodeclipse-1/issues/221">#221</a> for details.
Sources are of course at https://github.com/Nodeclipse/nodeclipse.github.io
</p>
<p>
2018-01-11 Nodejs 8 has depricated <code>--debug</code> command option, so debug may not work.
The code in question is <code>cmdLine.add("--debug"+brk+"="+nodeDebugPort);</code>
<a href="https://github.com/Nodeclipse/nodeclipse-1/blob/master/org.nodeclipse.debug/src/org/nodeclipse/debug/launch/LaunchConfigurationDelegate.java#L114">LaunchConfigurationDelegate.java#L114</a>.
Help is needed to try out solution for Nodejs 8
<a href="https://github.com/Nodeclipse/nodeclipse-1/issues/220">#220</a>
.
</p>
<p>
2017-11-03 Have you tried <a href="https://github.com/mickaelistria/eclipse-bluesky">BlueSky</a> -
new simple and productive Web Development Tools by Mickael Istria.
Available on <a href="https://marketplace.eclipse.org/content/bluesky-web-development-eclipse-ide-experimental">marketplace</a>
and soon in <a href="http://www.nodeclipse.org/updates/list">Nodeclipse plugin list</a>.
</p>
<p>
2017-10-31 <a href="https://github.com/Mathieuu/CsvEdit">CSV Edit</a> (with a tiny change)
was built and update site is now at
<code>http://www.nodeclipse.org/updates/csvedit/</code><br>
Also installable via on <a href="https://marketplace.eclipse.org/content/csv-edit-resurrector">marketplace</a>
and in <a href="http://www.nodeclipse.org/updates/list">Nodeclipse plugin list</a>.
</p>
<p>
2017-11-18 <a href="http://www.nodeclipse.org/updates/gradle-ide-pack">Gradle IDE Pack</a> repository
(<a href="https://marketplace.eclipse.org/content/gradle-ide-pack">on marketplace</a>)
now includes <a href="https://github.com/de-jcup/egradle">EGradle</a>.
And by default when using MPC
<a href="https://marketplace.eclipse.org/content/egradle-editor">EGradle Editor</a> for <code>.gradle</code> files
is installed. It is superior to
<a href="https://github.com/Nodeclipse/GradleEditor">Minimalist Gradle Editor</a> developed here 2 years ago.
</p>
<a id="october2017headlines" class="anchor" href="/#october2017headlines" aria-hidden="true"></a>
<p>
<a href="/#october2017headlines">2017 October headlines and links</a>:<br/>
<a href="https://github.com/de-jcup/eclipse-bash-editor">Bash Editor for Eclipse by Albert Tregnaghi</a>
is now stable, released as 1.0. <br/>
(is listed in
<a href="http://www.nodeclipse.org/updates/list">Nodeclipse Plugins List</a>
)
<br/>
<a href="https://www.eclipse.org/oxygen/noteworthy/">Eclipse Oxygen New and Noteworthy</a>
</p>
<a id="november2016headlines" class="anchor" href="/#november2016headlines" aria-hidden="true"></a>
<p>
<a href="/#november2016headlines">2016 November headlines and links</a>:<br/>
<a href="https://youtu.be/hW0ENpGcP34?t=111">Video on Youtube "Eclipse Neon.1" by Holger Voormann, starting at Web/JavaScript improvements</a>
and
<a href="https://www.eclipse.org/neon/noteworthy/">Eclipse Neon New and Noteworthy</a>
</p>
<p>
2016-11-1 <a href="http://www.nodeclipse.org/updates/polyglot-maven-ide-pack">Eclipse Editors for Polyglot Maven: Atom & Groovy</a>
&
<a href="https://github.com/Enide/polyglot-maven-editors#minimalist-proto-files-editor-for-protocol-buffers-and-grpc">
Minimalist .proto files Editor (for Protocol Buffers and gRPC)</a>
are released.
As they are coming from one repository, update site is also one<br>
<code>http://www.nodeclipse.org/updates/polyglot-maven-ide-pack/</code>.
</p>
<p>
2016-8-22 TypeScript IDE and Angular2 Eclipse 1.0<br/>
Angelo Zerr and Pascal Leclercq have just released TypeScript IDE and Angular2 Eclipse 1.0.<br/>
<!--
Available at Anide update site
<br><code>http://www.nodeclipse.org/updates/anide/</code><br>
, <a href="http://www.nodeclipse.org/updates/">main update site</a> and within Enide Studio 2014 marketplace install.<br>
-->
Read New-and-Noteworthy-1.0.0 for
<a href="https://github.com/angelozerr/typescript.java/wiki/New-and-Noteworthy-1.0.0">TypeScript IDE</a> and
<a href="https://github.com/angelozerr/angular2-eclipse/wiki/New-and-Noteworthy-1.0.0">Angular2 Eclipse</a>.
( It got TypeScript completion, hover, hyperlink, code folding, mark occurrences, find references, outline;
Editors for Angular2 and Angular CLI support to name a few. )<br/>
Note that <a href="https://angular.io/">Angular v2</a> itself is not released and is in RC5 status.<br/>
Both solutions can be also quickly installed via
<a href="http://www.nodeclipse.org/updates/list">Nodeclipse Plugins List 2.0</a>.
</p>
<p>
2016-6-23 Eclipse 4.6 <a href="https://www.eclipse.org/neon/">Neon</a>
<img src="https://www.eclipse.org/neon/assets/public/images/logo-eclipse-neon.png"/>
is released and available for <a href="https://www.eclipse.org/downloads/">download</a>.
Here comes again "Eclipse IDE for JavaScript and Web Developers" package
and new "Eclipse for Android Developers" with Andmore project (ADT continuation).
Any bugs report as
<a href="https://github.com/Nodeclipse/nodeclipse-1/issues/">GitHub issues</a>.<br>
<br>
<a href="https://eclipse.org/che/">Eclipse Che</a>
, coming from online IDE <a href="https://codenvy.com/">codenvy.com</a>
, is now even promoted from download page.
</p>
<p>
2016-6-xx
<a href="https://www.joyent.com/blog/samsung-acquires-joyent-a-ctos-perspective">Joyent</a>
(Node.js creator) is acquired by
<a href="http://www.samsungmobilepress.com/press/Samsung-to-Acquire-Joyent,-a-Leading-Public-and-Private-Cloud-Provider?2016-06-16">Samsung</a>.
<a href="https://nodejs.org/en/foundation/">Node.js Foundation</a>
already has IBM, Intel, Microsoft, Red Hat, Google, SAP, Yahoo!. yahoo!
</p>
<p>
2016-6-3 news:<br>
Eclipse Neon will be released in June and will require at least Java 8 to run.<br>
Try out
<a href="https://www.genuitec.com/tech/jsjet-javascript-in-eclipse/">Genuitec JSjet</a>
for better ES6 support. (Not FOSS, free for use for 8 days per month).<br>
Webclispe JS Debugger <a href="https://github.com/Nodeclipse/nodeclipse-1/issues/210">cannot be installed into Nodeclipse</a>.
Hopefully this will change with Piotr Tomiak work.<br>
Get <a href="https://github.com/pellaton/eclipse-cheatsheet">Eclipse shortcuts</a> cheatsheets for Mars and Neon.
</p>
<p>
2016-4-15 <a href="http://www.nodeclipse.org/updates/polyglot-maven-ide-pack/">Polyglot Maven with YAML IDE Pack</a>.
</p>
<p>
2016-3-25 We were changing domain registrar migrating from godaddy.com, and they did not allow that.
The result was wrong DNS resolution, that was not noticed and understood at once.
If you know how to move off godaddy.com hook, please comment at
<a href="https://github.com/Nodeclipse/www.nodeclipse.org/issues/72">www#72</a>.
Thanks to Rachel Berry and Daniel Chapman from GitHub Support for quick and detailed help.
</p>
<p>
2016-2-29 Gradle Editor now lives at <a href="https://github.com/Nodeclipse/GradleEditor">https://github.com/Nodeclipse/GradleEditor</a>.
</p>
<a id="november2015headlines" class="anchor" href="/#november2015headlines" aria-hidden="true"></a>
<p>
<a href="/#november2015headlines">2015 November headlines</a>.<br/>
<a href="https://nodejs.org/en/blog/community/individual-membership/">Node.js Foundation Individual membership is free for contributors, with right to vote for Board of Directors.</a>
</p>
<a id="anide1_1" class="anchor" href="/#anide1_1" aria-hidden="true"></a>
<p>
<a href="/#anide1_1">2015-11-08 Anide 1.1</a> with <a href="https://nodejs.org/en/docs/es6/">ECMAScript 6 ( aka ES6/EcmaScript 2015 ) support<br/>
<img src="img/ecmascript6-logo.png"/></a><br/>
Angelo Zerr and Pascal Leclercq have just released tern.java, AngularJS Eclipse, Eclipse WTP WebResources.<br/>
Available at Anide update site
<br><code>http://www.nodeclipse.org/updates/anide/</code><br>
, <a href="http://www.nodeclipse.org/updates/">main update site</a> and within Enide Studio 2015 marketplace install
{% include nodeclipse_install_button.html %}.<br>
Read New-and-Noteworthy-1.1.0 for
<a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-1.1.0">tern.java</a> and
<a href="https://github.com/angelozerr/angularjs-eclipse/wiki/New-and-Noteworthy-1.1.0">angularjs-eclipse</a>.
( It got ECMAScript 6 support, ES6 features completion, hyperlink.
Tern Outline was improved to support ES6 features like ES6 class.
<a href="http://phaser.io/">Phaser</a> support.
Angular Explorer View got Sort action. )<br/>
Hint of the day: run <code>node -p process.versions.v8</code> to learn current V8 version.
</p>
<a id="mirur" class="anchor" href="/#october2015headlines" aria-hidden="true"></a>
<p>
<a href="/#mirur">2015-11-7 add Mirur Visual Debugger</a>, include the latest JSHint-Eclipse.<br/>
Add to update site and Enide 2015 <a href="http://mirur.io/">Mirur Visual Debugger.<br/>
<img src="http://mirur.io/images/mirur-logo.png" width="150" height="50"/><br/>
<img src="http://mirur.io/images/mirur-example.jpg" width="500" height="400"/><br/>
</a>
It works for Java. UPDATE and
<a href="https://github.com/brandonborkholder/mirur/issues/2">for JavaScript since Dec 2015</a>.
</p>
<a id="october2015headlines" class="anchor" href="/#october2015headlines" aria-hidden="true"></a>
<p>
<a href="/#october2015headlines">2015 October headlines</a>.<br/>
<a href="https://nodejs.org/en/blog/release/v5.0.0/">Node v5 is released, and will be non-LTS version</a>
with <a href="https://nodejs.org/en/blog/community/node-v5/"><code>npm</code> v3 and V8 v4.6</a>.
<br/>
<a href="https://www.redhat.com/en/about/press-releases/red-hat-joins-nodejs-foundation">Red Hat joined Node.js Foundation</a>,<br/>
<a href="https://eclipsehowl.wordpress.com/2015/06/24/mars-attacks/">Eclipse Mars.1 is the first to bring new feature with every service release</a><br/>
and
<a href="https://github.com/eclipsesource/jshint-eclipse/releases/tag/0.10.0">JSHint-Eclipse 0.10 with included JSHint 2.9.0</a>.<br/>
Nodeclipse packages (update-site zip archive and stand-alone IDE distributions)
<a href="https://sourceforge.net/projects/nodeclipse/files/">downloads from SourceForge</a>
surpass 100K.
</p>
<p>
2015-9-25 Nodeclipse 1.0.2 fix for <a href="https://github.com/Nodeclipse/nodeclipse-1/issues/198">#198</a>.
If you got 1.0.1 and doing Node.js development update to 1.0.2 or set Preference
"pass all environment variables of Eclipse to launched Node.js app".
</p>
<p>
2015-9-24 Nodeclipse 1.0.1 "are we ready for <a href="https://iojs.org/en/es6.html">ES6</a>?"<br/>
Enide, Nodeclipse version 1.0.1 are released.<br>
This train also comes with <a href="https://github.com/winterstein/Eclipse-Markdown-Editor-Plugin">Markdown Editor</a> 1.2
and <a href="https://github.com/nodeclipse/editbox">EditBox</a> 0.70.<br>
Update site is
<br><code>http://www.nodeclipse.org/updates/<br></code>
{% include nodeclipse_install_button.html %}<br>
Also available in
<br><code>{% include nodeclipse_update_site.html %}<br></code>
(faster, but without future updates).<br>
There is also update site .zip archive on <a href="http://sourceforge.net/projects/nodeclipse">SourceForge</a>.<br>
See <a href="http://www.nodeclipse.org/history">history</a> for details.
<br>
</p>
<p>
2015-9-17 <a href="https://nodejs.org/en/blog/release/v4.1.0/">Node.js v4.1</a>
For 4.x there is
<a href="https://github.com/nodejs/LTS/wiki/Breaking-changes-between-v0.12-and-next-LTS-release">Breaking changes</a>
and
<a href="https://github.com/nodejs/node/labels/confirmed-bug">current bugs</a>.
</p>
<p>
2015-9-10 <a href="https://strongloop.com/strongblog/node-js-community-ibm-acquisition/">StrongLoop has been acquired by IBM.</a>
</p>
<p>
2015-9-8 <a href="https://nodejs.org/en/blog/release/v4.0.0/">Node.js v4.0</a>.
Quote: "Node.js v4.0.0 contains V8 v4.5, the same version of V8 shipping with the Chrome web browser today.
New ES6 features are enabled by default."
Node.js Foundation feels like
<a href="https://eclipse.org/membership/showMembersWithTag.php?TagID=strategic">Eclipse Foundation</a>
with IBM and Microsoft as platinum
<a href="https://nodejs.org/en/foundation/members/">members</a>.
To be voting member it should be a company paying at least
<a href="https://nodejs.org/en/foundation/members/">$50K annually</a>
(<a href="https://nodejs.org/en/foundation/">as on presentation, slide 12</a>).
Is this the official end to smaller companies playing Node.js business games?
</p>
<p>
2015-9-1 Anide 1.0<br/>
Angelo Zerr and Pascal Leclercq have just released tern.java, AngularJS Eclipse, Eclipse WTP WebResources.<br/>
Available at Anide update site
<br><code>http://www.nodeclipse.org/updates/anide/</code><br>
, <a href="http://www.nodeclipse.org/updates/">main update site</a> and within Enide Studio 2014 marketplace install.<br>
Read New-and-Noteworthy-1.0.0 for
<a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-1.0.0">tern.java</a> and
<a href="https://github.com/angelozerr/angularjs-eclipse/wiki/New-and-Noteworthy-1.0.0">angularjs-eclipse</a>.
( It got ECMAScript 6 (Promise), better Node and RequireJS, JSDoc, Delite, Tern Explorer View,
Tern Hyperlink inside HTML, Browser Extension for HTML elements ids, CSS Selectors to name a few. )
</p>
<p>
2015-9-1
EcmaScript 6 support is coming,
speed it up by thanking Marijn Haverbeke for his long continuous work on
<a href="http://ternjs.net/">ternjs</a>
(<a href="https://github.com/marijnh/tern">GitHub</a>)
and donating a coffee cup or beer
<a href="https://www.bountysource.com/issues/1141202-support-es6-features">Bounty</a> to him.
@Marijn, I hope the project will get a way for saying thanks and donate in open way.
Just having
<a href="https://www.bountysource.com/issues/1141202-support-es6-features">ES6 features bounty</a>
open would do that.<br>
P.S. Marijn Haverbeke is
<a href="https://github.com/marijnh/tern/issues/623">asking</a>
for monthly payment via
<a href="https://marijnhaverbeke.nl/fund/">https://marijnhaverbeke.nl/fund/</a>
</p>
<p>
2015-8-18
<a href="https://github.com/Nodeclipse/EditBox">Nodeclipse EditBox</a>
0.70.0 released.<br>
Before Nodeclipse 0.18 train release it is available only from
<br><code>http://www.nodeclipse.org/updates/editbox/<br></code>
</p>
<p>
2015-07-07 Enide 2015-7<br/>
<img id="logo" src="./enide/2015/eclipse256.png" alt="Enide 2015"><br/>
<a href="/enide/2015/">Enide 2015</a> is package distribution based on Eclipse 4.5 Mars
with plugins for Java and JavaScript:
Maven, Gradle, AngularJS, Node.js. All we have, all we know.
{% include enide-2015-downloads.html %}<br>
If you want an existing plugin to be added to the next version, raise issue at
<a href="https://github.com/Nodeclipse/packages/issues">https://github.com/Nodeclipse/packages/issues</a>.
HELP IS NEEDED with <a href="/artworks">artworks and logos</a> for Enide 2015 and AjsIDE.
</p>
<p>
2015-6-18 AngularJS Eclipse, Eclipse WTP WebResources and Tern Eclipse IDE 0.10.0 are released.<br/>
Named together as Anide and available at Anide update site
<br><code>http://www.nodeclipse.org/updates/anide/</code><br>
, <a href="http://www.nodeclipse.org/updates/">main update site</a> and within Enide Studio 2014 marketplace install.<br>
Read New-and-Noteworthy-0.10.0
for <a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.10.0">tern.java</a>
and <a href="https://github.com/angelozerr/eclipse-wtp-webresources/issues?q=milestone%3A0.10.0+is%3Aclosed">
eclipse-wtp-webresources closed issues</a>.
( It got runtime-generated completion & hover icons, multi types support;
new support for Bootstrap, jQuery UI, jQuery Mobile, QUnit, Google Charts, three.js, Chrome Extension API,
Appcelerator Titanium (basic)
and improvements for JSDoc, YUI & AlloyUI, Dojo 1.10. )
</p>
<p>
2015-4-18 AngularJS Eclipse, Eclipse WTP WebResources and Tern Eclipse IDE 0.9.0 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/</code><br>
main update site and within Enide Studio 2014 marketplace install.<br>
Just read New-and-Noteworthy-0.9.0
for <a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.9.0">tern.java</a>
only. (It got Async tern completion, WTP Tern Validator, Grunt & Gulp support, YUI / AlloyUI Improvement
and Google Maps Improvement.)
</p>
<p>
2015-03-20 <a href="https://github.com/Nodeclipse/coffeescript-eclipse">Nodeclipse CoffeeScript Viewer</a>
(<a href="http://marketplace.eclipse.org/content/nodeclipse-coffeescript-viewer-editor-eclipse-431">mp</a>)
was missing on main update site. Thanks to
<a href="http://stackoverflow.com/questions/29079498/coffeescript-text-highliting-with-eclipse">raised question on StackOverflow.com</a>
it is now restored under
<br><code>http://www.nodeclipse.org/updates/coffeescript/<br></code>
to included recommended
<a href="https://github.com/Nodeclipse/EditBox">Nodeclispe EditBox</a>.
</p>
<p>
2015-03-19 <a href="/enide/studio/2014">Enide Studio 2014.17 update 2 for Windows x64</a>
<a href="http://marketplace.eclipse.org/content/enide-studio-2014-nodejs-javascript-and-java">mp</a>
is update of Eclipse package distribution taking <b>Eclipse IDE for Java Developers Luna SR2</b>
with the latest AngularJS, TernIDE and TCF Terminals included.<br>
<br>
Get <a href="http://sourceforge.net/projects/nodeclipse/files/Enide-Studio-2014/0.17plus0.8_u2/Enide-Studio-2014.17-u2-win64.zip/download">
<img alt="Enide Studio 2014.17-u2 for Windows x64" src="http://www.nodeclipse.org/img/enide-studio/icon-windows.png" />
Enide Studio 2014.17-u2 for Windows x64</a><br>
<br>
For other OSes recommended install/update via drag-and-drop of install button
<a href="http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1520853"
title="Drag and drop onto a running Eclipse main toolbar to install Enide Studio 2014 plugins: Node.js, JavaScript and Java">
<img src="/img/installbutton.png"/>
</a>
on Eclipse main toolbar.<br/>
</p>
<p>
2015-02-25 <a href="http://www.nodeclipse.org/updates/">Nodeclipse Updates p2 repository</a>
is updated to included the latest
<a href="http://marketplace.eclipse.org/content/tcf-terminals">TCF Terminals</a>.
New:
- Open Terminal or Git Bash by wright-clicking folder in Project Explorer and selecting "Show in" menu.
<a href="/enide/studio/2014">Enide Studio 2014</a> is
the most <a href="http://marketplace.eclipse.org/content/enide-studio-2014-nodejs-javascript-and-java">featureful distribution</a>
where AngularJS, TernIDE and TCF Terminals are already included.
Recommended install/update is via drag-and-drop of install button
<a href="http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1520853"
title="Drag and drop onto a running Eclipse main toolbar to install Enide Studio 2014 plugins: Node.js, JavaScript and Java">
<img src="/img/installbutton.png"/>
</a>
on Eclipse main toolbar.<br/>
</p>
<p>
2015-1-28 AngularJS Eclipse, Eclipse WTP WebResources and Tern Eclipse IDE 0.8.0 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/<br></code>
Read New-and-Noteworthy-0.8.0
for <a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.8.0">tern.java</a>
and <a href="https://github.com/angelozerr/angularjs-eclipse/wiki/New-and-Noteworthy-0.8.0">angularjs-eclipse</a>.
(It got ECMAScript 6, Jasmine, Protractor, snabbt.js support and more.)
</p>
<p>
2015-1-26
<a href="https://github.com/winterstein/Eclipse-Markdown-Editor-Plugin">Markdown Editor</a>
1.2 released.<br>
Before Nodeclipse 0.18 release it is available only from
<br><code>http://www.nodeclipse.org/updates/markdown/<br></code>
</p>
<p>
2014-12-04 AngularJS Eclipse, Eclipse WTP WebResources and Tern Eclipse IDE 0.7.0 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/<br></code>
Read New-and-Noteworthy-0.7.0
for <a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.7.0">tern.java</a>
and <a href="https://github.com/angelozerr/angularjs-eclipse/wiki/New-and-Noteworthy-0.7.0">angularjs-eclipse</a>.
(It got Node.js Express, Node.js MongoDB Native, Node.js Mongoose and tabris.js support.)
With this release
<a href="https://github.com/angelozerr/eclipse-wtp-webresources">Eclipse WTP WebResources</a>
is also included into Anide Update site.
</p>
<p>
2014-10-13 .17.plus<br/>
Nodeclipse, Enide.p2f and Enide Studio 2014 marketplace entries updated to include Tern support.
<br/>
See <a href="http://www.nodeclipse.org/history">history</a> for details.
<br>
</p>
<p>
2014-10-11 <a href="/enide/studio/2014">Enide Studio 2014.17</a> for Windows64 released<br/>
<img alt="Enide Studio 2014.17 for Windows x64" src="http://www.nodeclipse.org/img/enide-studio/icon-windows.png" />
Get it from <a href="https://sourceforge.net/projects/nodeclipse/files/Enide-Studio-2014/0.17/">SourceForge</a>.<br/>
Read <a href="/enide/studio/2014/README_2014.17">README_2014.17</a>.<br/>
<br/>
If I had notebook with Linux/OS X, there could be such package as well.<br/>
</p>
<p>
2014-10-10 <a href="/enide/studio/2014">Enide Studio 2014</a> to be
the most <a href="http://marketplace.eclipse.org/content/enide-studio-2014-nodejs-javascript-and-java">featureful distribution</a>
with AngularJS, TernIDE and TCF Terminals included.
Recommended install via drag-and-drop of install button
<a href="http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1520853"
title="Drag and drop onto a running Eclipse main toolbar to install Enide Studio 2014 plugins: Node.js, JavaScript and Java">
<img src="/img/installbutton.png"/>
</a>
on Eclipse main toolbar.<br/>
<img src="/img/how-drap-an-drop-to-install.png"/>
</p>
<p>
2014-10-04 AngularJS Eclipse and Tern Eclipse IDE 0.6.0 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/<br></code>
<a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.6.0">Read New-and-Noteworthy-0.6.0</a>.
</p>
<p>
2014-09-26 0.17 "Express 4.x and TernIDE support" release<br/>
Enide, Nodeclipse version 0.17 are released. Update site is
<br><code>http://www.nodeclipse.org/updates/<br></code>
{% include nodeclipse_install_button.html %}<br>
Also available in
<br><code>{% include nodeclipse_update_site.html %}<br></code>
(faster, but without future updates).
There is also update site .zip archive on <a href="http://sourceforge.net/projects/nodeclipse">SourceForge</a>.<br/>
<br/>
See <a href="http://www.nodeclipse.org/history">history</a> for details.
<br>
</p>
<p>
2014-09-01 AngularJS Eclipse and Tern Eclipse IDE 0.5.0 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/<br></code>
Look at sources and wiki: <a href="https://github.com/angelozerr/angularjs-eclipse">AngularJS Eclipse</a>
and <a href="https://github.com/angelozerr/tern.java">Tern Eclipse IDE </a>.<br>
<a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.5.0">Read New-and-Noteworthy-0.5.0</a>.
<br>
</p>
<p>
AngularJS Eclipse and Tern Eclipse IDE 0.4.0 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/<br></code>
Look at sources and wiki: <a href="https://github.com/angelozerr/angularjs-eclipse">AngularJS Eclipse</a>
and <a href="https://github.com/angelozerr/tern.java">Tern Eclipse IDE </a>.<br>
<a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.4.0">Read New-and-Noteworthy-0.4.0</a>.
<br>
</p>
<p>
2014-06-26 AngularJS Eclipse and Tern Eclipse IDE 0.3 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/<br></code>
Both <a href="https://github.com/angelozerr/angularjs-eclipse">AngularJS Eclipse</a>
and <a href="https://github.com/angelozerr/tern.java">Tern Eclipse IDE </a> projects have great wikis.<br>
<a href="https://github.com/angelozerr/tern.java/wiki/New-and-Noteworthy-0.3.0">Read New-and-Noteworthy-0.3.0</a>.
<br>
</p>
<p>
2014-06-09 0.16 "ECT" release<br/>
Enide, Nodeclipse version 0.16 are released. Update site is
<br><code>http://www.nodeclipse.org/updates/<br></code>
{% include nodeclipse_install_button.html %}<br>
Also available in <br><code>{% include nodeclipse_update_site.html %}<br></code> (faster, but without future updates).
There is also update site .zip archive on <a href="http://sourceforge.net/projects/nodeclipse">SourceForge</a>.<br/>
<br/>
A few minor fixes and Eclipse Color Theme (ECT) that now supports everything,
see <a href="http://www.nodeclipse.org/history">history</a>.
<br>
</p>
<p>
2014-05-30 AngularJS Eclipse and Tern Eclipse IDE 0.2 are released.<br/>
Named together as Anide and available at Update site
<br><code>http://www.nodeclipse.org/updates/anide/<br></code>
Both <a href="https://github.com/angelozerr/angularjs-eclipse">AngularJS Eclipse</a>
and <a href="https://github.com/angelozerr/tern.java">Tern Eclipse IDE </a> projects have great wikis.
<br>
</p>
<p>
2014-05-12 The most popular?<br/>
Or what is calculation for <a href="http://marketplace.eclipse.org/popular/top">http://marketplace.eclipse.org/popular/top</a>,
but it is definitely not download numbers.<br/>
Recently I (Paul Verest) looked closer at
<a href="http://marketplace.eclipse.org/content/eclipse-color-theme">Eclipse Color Theme plugin</a> (ECT)
that in #3 on Eclipse marketplace,
and is not backed by any company or commercial interests.
And what could I see? Users issues are not commented, merged changes are not released for 2-3 months.
When I got inspiration (after
<a href="https://github.com/guari/eclipse-ui-theme/pull/60">Teoh Han Hui support of Gradle Editor in Moonrise UI theme</a>,
see history) to update ECT with support for Gradle Editor and Chromium Debugger JS Editor,
I released newer ECT version the same day. And the decision was right. The pull request is not yet merged,
while you can use
<a href="http://marketplace.eclipse.org/content/eclipse-color-theme-nodeclipse">ECT 0.14</a>
already.<br/>
<br/>
Have you noticed many I? That is considered not good manner, but the fact is since 0.6 I have been pushing this project
along one person. And got feeling to my bones what is feels to make Nodeclispe, to connect Node.js and Java worlds,
something that neither Java big companies, nor Joyent or StrongLoop would fancy.
Companies prefers to have tools done on their stack.<br/>
<br/>
I am looking for ways to make it possibly to spend more time for the project,
but that would require some commercial backing.
Otherwise the porject would just go slowly, when I or other developers have time.
<!--
Looking around I see a lot of platform for developemnt that all have plugins for any
-->
</p>
<p>
<img src="img/12-to-15-150-250.jpg"/><br/>
2014-04-30 0.15.1 "Gradley"<br/>
Enide, Nodeclipse version 0.15 are released. Update site is
<br><code>http://www.nodeclipse.org/updates/<br></code>
{% include nodeclipse_install_button.html %}<br>
Also available in <br><code>{% include nodeclipse_update_site.html %}<br></code> (faster, but without future updates)
and enide-repository <code>https://raw.github.com/Enide/eclipse-p2-composite-repository/master/</code> .
There is also update site .zip archive on <a href="http://sourceforge.net/projects/nodeclipse">SourceForge</a>.<br/>
<br/>
This release is mostly about Gradle.
Now you can use TODOs in your code, and they will be shown in Tasks without TODOs in used modules.
Also there are now color preferences for 3 Editors.
See <a href="http://www.nodeclipse.org/history">history for more</a>.
<br>
<a href="https://github.com/Nodeclipse/nodeclipse-1/issues/new">Wanna ask?</a><br>
<br>
</p>
<p>
2014-04-29 Node.js support in IBM and CloudFoundry<br/>
IBM has recently released beta of
<a href="http://marketplace.eclipse.org/content/ibm-codename-bluemix-eclipse-kepler">BlueMix for Eclipse</a>
That has Node.js support. While <a href="http://www.gopivotal.com/platform-as-a-service/pivotal-cf">Pivotal CloudFoundry</a>
had Node.js support for
<a href="http://blog.semmy.me/post/47553962398/deploying-a-simple-node-js-app-on-cloudfoundry">long time</a>.
</p>
<p>
2014-04-28 0.15 "Gradley"<br/>
Enide, Nodeclipse version 0.15 betta are released. Update site is<br>
<br><code>http://dl.bintray.com/nodeclipse/nodeclipse/0.15/<br></code><br>
see <a href="http://www.nodeclipse.org/history">history</a>.
</p>
<p>
2014-04-22 What is Nodeclipse?<br/>
What is Nodeclipse for you? Edit <a href="http://en.wikipedia.org/wiki/Nodeclipse">wikipedia article</a>.
</p>
<p>
2014-04-20 More than 500 000<br/>
<a href="https://bintray.com/nodeclipse/nodeclipse/nodeclipse-1/view/statistics">
<img src="img/bintray-nodeclipse-stats-month-to-20140419-680x350.png" width="500" height="300"/><br/>
More than 500 000 files per month are served with
BinTray service</a>
for our <a href="http://www.nodeclipse.org/updates/" class="download">update site</a>.
</p>
<p>
2014-03-31 0.12 "Android friendly color"<br/>
<img src="img/logos/Node-JS-logo.png"/>
<img src="img/logos/100px-Android_robot.svg.png"/>
<img src="img/logos/gradle-icon-128x128.png"/>
<br/>
Enide, Nodeclipse version 0.12 are released. Update site is
<br><code>http://www.nodeclipse.org/updates/<br></code>
{% include nodeclipse_install_button.html %}<br>
Also available in <br><code>{% include nodeclipse_update_site.html %}<br></code> (faster, but without future updates)
and enide-repository <code>https://raw.github.com/Enide/eclipse-p2-composite-repository/master/</code> .
There is also update site .zip archive on <a href="http://sourceforge.net/projects/nodeclipse">SourceForge</a>.<br/>
<br/>
Gradle (Eclipse plugin) can now be used to deploy .apk into Android Virtual Device AVD;<br/>
more and more help coming from friendly Nodeclipse users, see
<a href="https://github.com/Nodeclipse/nodeclipse-1/pull/136">PR#136</a>;<br>
and we include plugins to colorize our developer lives.<br>
See all details at <a href="http://www.nodeclipse.org/history">http://www.nodeclipse.org/history</a><br/>
Android, friends, colors... how to say it in one word? Well, Android is also using green color,
but as you see <a href="http://www.nodeclipse.org/history">it is much more</a>
than just about one shared color.
<br>
<a href="https://github.com/Nodeclipse/nodeclipse-1/issues/new">Wanna ask?</a><br>
<br>
</p>
<p>
2014-03-27 <a href="https://blogs.oracle.com/nashorn/">Nashorn</a> debugging & <a href="https://avatar-js.java.net/">Avatar.js</a><br/>
Thanks to Jim Laskey for referencing Nodeclipse as possible place,
where <a href="https://blogs.oracle.com/nashorn/entry/latest_news_from_the_nashorn">Nashorn debugging</a> with Eclipse can be made,
but we do need help on that from Eclipse & Oracle.<br/>
And from that post I myself have learned that Node.js port to JVM is finally open-sourced
as <a href="https://avatar-js.java.net/">Avatar.js</a>.<br/>
<!--
I think such project really dependent on interest from community,
so they should be kept open and transparent as much as possible.<br/>
We live in great JavaScript times.
-->
</p>
<p>
2014-03-26 remember the Sun<br/>
<img src="https://duke.kenai.com/SunRIP/SunRIPsmall.jpg" width="500" height="400"/><br/>
<a href="https://duke.kenai.com">More Duke images</a><br/>
Cute, isn't it?<br/>
Node.js does not have yet mascot. <a href="artworks">Propose one</a>.<br/>
</p>
<p>
2014-03-25 EditBox plugin<br/>
Just by <a href="https://github.com/guari/eclipse-ui-theme/pull/52">chance</a> discovered
<a href="http://editbox.sourceforge.net/">EditBox plugin</a><br/>
<img src="img/enide-studio/EditBox-plugin-express-example.PNG" width="500" height="600"/><br/>
See also <a href="https://github.com/Nodeclipse/EditBox/issues/1">Nodeclipse EditBox</a><br/>
<!--
See also <a href="https://github.com/jeeeyul/eclipse-themes/issues/141">jeeeyul/eclipse-themes#141</a><br/>
To get this result I just added *.js extention to java theme, and voilà<br/>
-->
Please do raise an <a href="https://github.com/Nodeclipse/nodeclipse-1/issues">issue</a>
if you know other diamonds in rough.
</p>
<p>
2014-03-25 <a href="https://github.com/Nodeclipse/coffeescript-eclipse">Nodeclipse CoffeeScript Editor</a>
0.4.0-201403250304 released<br/>
Update repository
<code>http://dl.bintray.com/nodeclipse/CoffeeScriptEditor/0.4.0-201403250304/</code><br/>
0.4.0 has Merged Pull Request #23 from Matt Tucker "When indenting, respect Eclipse editor preferences for tabs/spaces".
CoffeeScript Editor has issue #19 that appeared since Eclipse 4.3.1, and makes it unusable because of poping dialog when editing.
You need Eclipse 4.3.0 to use, e.g. Enide Studio 0.5.x.<br/>
For the project to revive, XText technology knowledge is needed.
</p>
<p>
2014-03-25 Nodeclipse 0.12 prerelease<br/>
Nodeclipse 0.12 is feature complete. And it will be released in a week as expected.<br/>
Following update repository can be used to get it before the release date.<br/>
<code>http://dl.bintray.com/nodeclipse/nodeclipse/0.11.0.20140324/</code><br/>
Known issue: repository includes <a href="http://marketplace.eclipse.org/content/eclipse-plugin-less">Eclipse plugin for LESS</a>
that can't be installed.
</p>
<p>
2014-03-24 IBM Acquires Cloudant<br/>
<a href="http://www.infoq.com/news/2014/03/CouchDB-IBM-Acquires-Cloudant">IBM Acquires Cloudant (Company behind CouchDB)</a>.
And CouchDB is database that is used by npm registry.
<!--
See also inside <a href="https://github.com/Nodeclipse/npm-proxy">npm-proxy</a> project.<br/>
<a href="https://cloudant.com/blog/the-nosql-family-tree/">
<img src="https://cloudant.com/wp-content/uploads/NoSQL-Family-Tree.png" width="500" height="400"/></a>.<br/>
-->
Note that Red Hat and EMC have
<a href="http://www.crunchbase.com/company/mongodb-inc">invested in MongoDB</a>.
Pivotal (EMC related) is <a href="http://www.gopivotal.com/oss">nurturing</a> Redis.
</p>
<p>
2014-03-24 Ansi Console<br/>
Thanks to John McCarthy for
<a href="http://stackoverflow.com/questions/21058043/strange-characters-in-nodeclipse-console/21059377">pointing</a> to
<a href="http://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/">Ansi Console plugin
<img src="http://mihai-nita.net/wp-content/uploads/2013/06/AECSample.jpg" width="500" height="350"/>
</a>.<br/>
Update site: <code>http://www.mihai-nita.net/eclipse</code>
<br/>
Sources at <a href="https://github.com/mihnita/ansi-econsole">https://github.com/mihnita/ansi-econsole</a>
</p>
<p>
2014-03-20 AnIDE is coming..<br/>
<img src="img/logos/Node-JS-logo.png"/>
<img src="img/logos/100px-Android_robot.svg.png"/>
<img src="img/logos/gradle-icon-128x128.png"/>
<img src="img/logos/250px-AngularJS_logo.svg.png"/>
<br/>
AnIDE is coming, and it is not about Android
(though <a href="/history">v0.12</a>
of <a href="http://marketplace.eclipse.org/content/gradle">Gradle(Enide)</a>
plugin can be used to deploy Android apk to Android Virtual Device),
but more about AngularJS.
<br/><br/>
<a href="https://github.com/angelozerr ">Angelo Zerr</a> has contacted me through
<a href="https://github.com/Nodeclipse/nodeclipse-1/issues/119">#119</a>
and this way I discovered that there is AngularJS-eclipse plugin being developed by him
and <a href="https://github.com/pascalleclercq">Pascal Leclercq</a>.
<br/><br/>
They are also working on <a href="https://github.com/angelozerr/tern.java">tern.java</a>
a Java wrapper for <a href="https://github.com/marijnh/tern">tern.js</a>
- a stand-alone code-analysis engine for JavaScript written in Javascript.
When tern.js is running using Node.js, it is much faster than using Rhino.
And it also can improve code assist for Node.js and jQuery.
<br/><br/>
Hopefully <a href="https://github.com/angelozerr/angularjs-eclipse">angularjs-eclipse</a>
will be released within month
<a href="https://github.com/angelozerr/angularjs-eclipse/issues/32">#32</a>.
<br/><br/>
Name discusson is at
<a href="https://github.com/angelozerr/angularjs-eclipse/issues/36">#36</a>.
</p>
<p>
2014-02-28 Enide Studio 2014 0.11-preview<br/>
<img id="logo" src="./img/eclipse48.png" alt="Enide Studio"><br/>
<a href="/enide/studio/2014/">Enide Studio 2014</a> is preview release based on Eclipse 4.4M4.
While I use it myself daily since January 2014, some bugs in Eclipse newer features are possible.
Nodeclipse and Enide plugins are of the same released versions.<br/><br/>
The intention is to let you try this Eclipse package (that has a lot of improvements)
without separate step of installing needed plugins.<br/><br/>
Downloads are from
<a href="https://sourceforge.net/projects/nodeclipse/files/Enide-Studio-2014/">SourceForge</a>:
win32, win64 and MacOS X cocoa x86_64.<br/>
{% include enide-studio-2014-downloads.html %}<br/>
For this preview release you are expected to give notice of anything not good that you notice,
and share ideas throught GitHub issues.
<br/><br/>
UPDATE: There seems to be a problem with download from "0.11-preview" folder in some locations.
Please <a href="https://github.com/Nodeclipse/www.nodeclipse.org/issues/new">raise an issue</a>.
</p>
<p>
2014-02-25 0.11 "Do It Yourself"<br/>
Enide, Nodeclipse and Nodeclipse CLI version 0.11 are released. New update site is old
<br><code>http://www.nodeclipse.org/updates/<br></code>
{% include nodeclipse_install_button.html %}<br>
Also available in <br><code>{% include nodeclipse_update_site.html %}<br></code>
and enide-repository <code>https://raw.github.com/Enide/eclipse-p2-composite-repository/master/</code> .
There is also update site archive on <a href="http://sourceforge.net/projects/nodeclipse">SourceForge</a>.<br/>
#81, #92, #120 are resolved. Check <a href="/history">What's new</a> to learn more.
<br>
<img src="http://media.scraphacker.com/2012/03/diy-neon-yellow.jpeg" width="250" height="250"/>
<a href="http://scraphacker.com/party-shoe-diy/">source</a>
<br>
Make your own Eclipse! Start from folder with older Eclipse,
then with Nodeclipse CLI (<code>npm i nodeclipse -g</code>) specify new folder to put Eclipse in:
<br><code>
nodeclipse new from luna to your/destination/folder
<br></code>
This can take a while. Then when Noclipse CLI Installer finished, cd to folder and run Eclipse:
<br><code>
cd your/destination/folder
eclipse
<br></code>
You can continue installing plugins. (Even if Eclipse is running, but you will need to restart afterwards):
<br><code>
nodeclipse install egit
nodeclipse install markdown gfm startexplorer jshint
<br></code>
Note that installing this way plugin with dependencies (e.g. Nodeclipse plugin) is not yet possible, so use GUI.
<a href="https://github.com/Nodeclipse/nodeclipse-1/issues/new">Wanna ask?</a><br>
<br>
</p>
<p>
2014-02-15 Host npm registry in your LAN!<br/>
As you may know (even if you missed) there were
<a href="http://blog.nodejs.org/2013/11/26/npm-post-mortem/">disruptions of npm registry service in November</a>.
That created series of events:<br/>
There was <a href="https://scalenpm.nodejitsu.com/">scalenpm.org campaign that collected 326 000 dollars</a>
(mostly from companies) and turned out to be associated with Nodejitsu.<br/>
And Isaac Z. Schlueter (author of npm and registry)
<a href="http://blog.nodejs.org/2014/01/15/the-next-phase-of-node-js/">leaving node team lead role</a>
and creating "npm, Inc.", that just
<a href="http://blog.npmjs.org/post/76320673650/funding">got $2.6M of funding</a>.<br/>
The free services will stay free and there will be some new paid services.<br/>
For that Nodeclipse can also give opportunity to cache npm modules in LAN server with
<a href="https://github.com/Nodeclipse/npm-proxy">npm-proxy</a>.
Questions, ideas for npm-proxy are only through issue tracker of Nodeclipse/npm-proxy repository.
</p>
<p>
2014-01-27 ten<br/>
<img src="img/Number_10_Messi_FC_Barcelona.jpg"/><br>
Enide & Nodeclipse version 0.10.0 are released. New update site is
<br><code>{% include nodeclipse_update_site.html %}<br></code>
{% include nodeclipse_install_button.html %}<br>
or use Enide repository <code>https://raw.github.com/Enide/eclipse-p2-composite-repository/master/</code> .
There is also update site archive on <a href="http://sourceforge.net/projects/nodeclipse">SourceForge</a>.<br/>