Questions tagged [vjet]

VJET is EBay's Eclipse plugin for working with Javascript. It uses type annotations in Javascript comments.

VJET is EBay's Eclipse plugin for working with Javascript. It uses type annotations in Javascript comments.

https://www.ebayopensource.org/index.php/VJET/HomePage

8 questions
13
votes
0 answers

How do I properly run the VJET development tools for NodeJS on Eclipse?

The default javascript editor for Eclipse has very poor outlining and code completion. As a result of this, for any modern javascript application like ExtJS or NodeJS where you need to write a lot of object literal statements, Eclipse becomes pretty…
Redsandro
  • 11,060
  • 13
  • 76
  • 106
1
vote
1 answer

VJET With NodeJS Modules

I have just imported a NodeJS project into Eclipse with VJET plugin. It seems nice that it understands some of the NodeJS but I don't like that it doesn't recognize Node-MySQL. Is there any documentation on how to write a project (like NodejsTL) to…
Pijusn
  • 11,025
  • 7
  • 57
  • 76
1
vote
0 answers

Running Node.js from Eclipse with VJET

I am looking for a workflow - Using Node.js as local web server. Steps: 1) Edit Node.js server JavaScript from within Eclipse 2) Test the changes with debugging enabled 2) Using VJET to edit Html & JavaScript to the front end. IS this possible? I am…
Chris G.
  • 23,930
  • 48
  • 177
  • 302
1
vote
1 answer

Eclipse Javascript development with VJET

Using Eclipse Juno with VJet Can you create typelib from javascripts yourself? I know you can download jquery and a few others from: http://www.ebayopensource.org/p2/vjet/typelib/ But obviously you will need others. Regards Chris
Chris G.
  • 23,930
  • 48
  • 177
  • 302
0
votes
2 answers

VJet and Javascript IDE it's possible to integrate the two

I installed VJet as plugin and it is nice that i can have JQuery autocomplete using the 'VJet editor" view, but i'm using the javascript IDE (downloaded at eclipse.org) and it's nice too because i can do auto complete in objects like array and i can…
tiagomac
  • 461
  • 1
  • 7
  • 18
0
votes
0 answers

No code hints showing in eclipse/vjet

As shown below is an image from vjets hompage. I get codecompletion but not the yellow hintbox. I use the latest eclipse release kepler 4.3.
skyw00lker
  • 819
  • 9
  • 20
0
votes
1 answer

VJET Java2Js with Maven?

Is it currently possible to execute the VJET Java2Js compiler from Maven or it's strongly bonded to the Eclipse IDE plugin?
NagyI
  • 5,907
  • 8
  • 55
  • 83
0
votes
1 answer

Translating VJET type annotations into Closure type annotations

EBay's VJET and Google's Closure Compiler both use type annotations in Javascript comments. Why have they chosen incompatible syntaxes? VJET function add(a, b) { //< Number add(Number, Number) return a + b ; } Google Closure /** * Queries a…
fadedbee
  • 42,671
  • 44
  • 178
  • 308