Module to work with code converted from groovy.


Keywords
groovy, converter
License
Apache-2.0
Install
npm install grooscript@1.3.0

Documentation

Build Status Build Status Build Status (AppVeyor) Coverage Status Maven Central Version

grooscript

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.3.0')

import org.grooscript.GrooScript

def result = GrooScript.convert '''
    def sayHello = { println "Hello ${it}!" }
    ['Groovy','JavaScript','GrooScript'].each sayHello'''

println result

Latest Versions

The latest release version is 1.3.0, released on 12-09-2016. The current development version is 1.3.1-SNAPSHOT.

Releases are available from Maven Central and Bintray.

Build

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

Tools

Grails 2 plugin

Grails 3 plugin

Gradle plugin

Npmjs package

Demos

Browser and node.js demos

Spring boot and gradle plugin in this books demo

Grails 3 websockets circles demo

Grails 3.1 with gradle and grails plugins in action

License

Grooscript licensed under the terms of the Apache License, Version 2.0

Contributors

  • Jorge Franco

  • Serge Tarkovski

  • Abel Salgado

  • Alberto Navarrete

  • Jonatas Emidio

  • yellowsnow

  • ulrichenslin

  • Lourens van Heerden

  • Ruaan van der Spuy

Contact

Twitter: @grooscript

#grooscript channel in Apache Groovy Community Slack

Please all feedback welcome, thank you!