Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "VJET/JavaScript Run As"

(VJET supports running JavaScript and vjojs)
(VJET supports running JavaScript and vjojs)
Line 1: Line 1:
 
== VJET supports running JavaScript and vjojs ==
 
== VJET supports running JavaScript and vjojs ==
  
=== Simple JS Run with Rhino
+
=== Simple JS Run with Rhino ===
  
 
Basic run as vjet js application should work for simple functions and vjojs.
 
Basic run as vjet js application should work for simple functions and vjojs.
Line 28: Line 28:
 
30.0
 
30.0
  
=== Simple JS Run with Web Browser
+
=== Simple JS Run with Web Browser ===
  
 
<source lang=javascript>
 
<source lang=javascript>

Revision as of 15:06, 30 January 2013

VJET supports running JavaScript and vjojs

Simple JS Run with Rhino

Basic run as vjet js application should work for simple functions and vjojs.

VJET provides a simple api for outputting to the console and is automatically wired into Rhino. vjo.sysout and vjo.syserr. This idea was borrowed from java System class.

ie

add this file foo.js into vjet project

function foo(a){
	vjo.sysout.println(a)
}
 
foo(20);
foo(30);


run as vjet js application

yields in eclipse console

20.0 30.0

Simple JS Run with Web Browser

function foo(a){
	alert(a)
}
 
foo(20);
foo(30);

should auto open an html file with this js inserted and alert 2 windows.

alert box with 20 in it alert box with 30 in it


This should work with Indigo SR2 and Juno SR1 versions of Eclipse.

Back to the top