Converts your Groovy or Java code to JavaScript(Groovy 2.x to Javascript ECMAScript 5). You need groovy jar greater than 2.0 to make conversions. For more information about the project, see grooscript.org
Not a full groovy to javascript conversion. Some groovy and java features not supported, check documentation for more info. Converted code, needs grooscript.js to run. grooscript.js inside the jar in META-INF/resources for servlet 3.0 support. Also a Node.js npm module imports it.
Try online conversions here. Can convert .java and .groovy files or a text fragment as:
@Grab('org.grooscript:grooscript:1.2.3')
import org.grooscript.GrooScript
def result = GrooScript.convert '''
def sayHello = { println "Hello ${it}!" }
['Groovy','JavaScript','GrooScript'].each sayHello'''
println result
The latest release version is 1.2.3, released on 23-02-2016. The current development version is 1.3.0-SNAPSHOT.
Releases are available from Maven Central and Bintray.
Using gradle wrapper, only Groovy dependencies in the project. You need JDK 1.7+ to build and test the project.
First time, you have to install Node.js stuff, maybe you have to run as administrator, do it with:
./gradlew npmInstall
Create IntelliJ IDEA project:
./gradlew idea
Test project:
./gradlew test
Build project:
./gradlew build
Grooscript licensed under the terms of the Apache License, Version 2.0
-
Jorge Franco
-
Serge Tarkovski
-
Abel Salgado
-
Alberto Navarrete
-
Jonatas Emidio
-
yellowsnow
-
ulrichenslin
-
Lourens van Heerden