Roadmap - palvarez89/Webapp-NodeJS GitHub Wiki
Roadmap items
Custom module support
The idea is to implement a generic javascript-to-java bridge so that on Custom modules can be implemented directly in Java.
Multiple instance support
The current integration of node only permits a single invocation in any given process. A new process must be created for any subsequent invocation.
A better solution is to permit multiple instances to exist within a single process. This then allows for:
-
serial invocations to occur without requiring the process to exit;
-
concurrent invocations.
Input is welcomed on all roadmap issues.