diff --git a/README.md b/README.md index becb990..ed885d0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Java Processor to **generate [Typescript](https://www.typescriptlang.org/) Defi ## What is it for ? -This is to help developing on **JVM javascript engine** (ie [Nashorn](http://www.oracle.com/technetwork/articles/java/jf14-nashorn-2126515.html)/[Rhino](https://github.com/mozilla/rhino)) using [Typescript](https://www.typescriptlang.org/) +This is to help developing on **JVM javascript engine** (ie [Nashorn](http://www.oracle.com/technetwork/articles/java/jf14-nashorn-2126515.html)) using [Typescript](https://www.typescriptlang.org/) The main goal is having the definitions available in the modern IDE like [Visual Studio Code](https://code.visualstudio.com/) and [Atom](https://atom.io/) and then use the **intellisense** feature available for java classes within typescript @@ -27,6 +27,10 @@ It is not a transpiler from Java to Javascript like [datathings/java2typescript * [jvm-npm](https://github.com/bsorrentino/jvm-npm) > NPM compliant CommonJS module loader for the JVM +## DEMO + +To give an idea about **how to work** thre is a demo available online [here](https://java2ts-demo.herokuapp.com/). the Backend of such demo has been developed using typescript on jvm provided by this project itself ([dogfooding](https://en.wikipedia.org/wiki/Eating_your_own_dog_food)). + ## Description Basic idea is to develop a Project by mixing Java & Javascript code or even all in Javascript relying on the [Nashorn Javascript engine](http://www.oracle.com/technetwork/articles/java/jf14-nashorn-2126515.html) embedded in JDK from Java8. This powerful engine enable Javascript language in JVM and allows to access to every java class either from JDK and external JAR(s) in a pretty straightforward way.