Typescript on JVM passing by Nashorn

The last trend, from Java to Javascript


I’ve developed a lot with Java (until java 8) but lately i’m progressively, for several reasons, moving to other programming languages with a prevalence of JavaScript.

Yes, this means that I’m becoming a full stack developer using, mainly, ionic/angular for front-end development and nodejs for back-end development.

Use Typescript as an enhanced Javascript


Really, more than works with JavaScript, I use Typescript that I consider a must-to-use for developing on javascript-aware environment/runtime.

A deep dive in Typescript is not the objective of this article, for now consider typescript an enhanced JavaScript that transpile itself in pure javascript so when we’ll use the Typescript word will imply that being the scene there is javascript

The Enterprise dilemma - Javascript on back-end

However in my opinion Javascript / angular / nodejs is a great technology stack but, working as consultant in Enterprise projects, there is a resistant to move back-end out of Java space (ie. comfort zone) because they want preserve know-how and reuse all the java stuff that they have selected/developed/tested during projects lifecycle

In any case also for the enterprise, although mainly for front-end development, the javascript know-how are becoming rapidly a must-have so in this context from a while my dilemma has became:

1. Is it possible move to javascript preserving/reusing  all the selected / developed / tested java stuff?
  • The answer here is YES, by using Nashorn that is  Javascript on JVM. Nashorn is the new JavaScript Engine embedded in Java 8 that runs on the JVM.
2. Is it possible develop a complete and well structured Javascript application ?
  • Yes it is, but with help of  Typescript that fills language's gaps and produce Javascript as output
3. Is it possible to have a module system that allow to arrange application in separate well-defined modules ?
4. Is it possible to keep the same productivity achieved developing in java by using IDE like Eclipse ?
  • The answer here is not so simple at all because we have to define what we mean as productivity. In this case I’ve considered just the IDE features provided to develop code and in particular the intellisense one. So, after such assumptions, the question become: 
    Is it possible to have an IDE with intellisense capability that is able to inspect java/javascript classes during development ?

    For answer to the last question and  accomplish all the points I’ve developed the Java2Typescript

The Java2typescript project


Diagram of solution




The project’s purposes are:

  • To generate Typescript Declarations enabling on every Typescript-Aware IDE (eg. Atom, VSCode)  the intellisense feature that make more comfortable access to Java features/classes from Javascript.
  • Introduce Typescript/Javascript code in java project to handle particular use cases that could require dynamic evaluation, extensibility or rapid prototyping

It use a java annotation processor that scans the given classes from project’s classpath and generate the equivalent typescript declarations that make possible to develop an application in an assisted way using a preferred typescript enabled IDE.
Developing application in such way you can :

  • Reuse javascript/typescript know how 
  • Reuse all pre existing Java stuff
  • Possibility to reuse some javascript stuff (eg. npm packages like mustache)
  • Use an Object oriented & type safe language (ie. typescript)
  • Enable Modularisation

When use it


Currently I’m using it mostly for playground and testing purposes continuously refining/improving to make it production ready.

I think that the best use cases are for unit & integration tests but it could be very useful to develop simple workflow (or extension points)  that could be updated at run time increasing configurability and extensibility of your app

I’ve realised also a Demo app available on line that has been developed using typescript on jvm provided by this project itself (dogfooding). The code is available here  

Conclusion


Hope this project could help you to think about the possibility to introduce usage of javascript in your Java applications, enabling it in a easy and effective way

Comments

  1. Thanks for sharing this informative content , Great work
    Leanpitch provides online training in Advanced Scrum Master during this lockdown period everyone can use it wisely.
    Advanced Scrum Master Training Online

    ReplyDelete
  2. Beginning a web development journey with an exceptional Software Development Company  has been transformative. it's a collaborative pursuit of excellence. I'm grateful for the collaboration that transforms visions into interactive realities and leaves a lasting digital footprint.

    ReplyDelete

Post a Comment

Popular posts from this blog

Google Web Toolkit Vs AngularJS

PlantText: The new "Online" UML Editor powered by PlantUML

PlantUML & Maven - Enrich your project's documentation