1. which node.js module should be used to build such a web application. A lot of nodejs frameworks outthere to support you to build up web app quickly, naming some such as MEAN, sailjs, feathersjs... 2. How could a Java application send output with node.js server. If it is communicating with node.js server via a socket then will the Java process itself be receiving something while node.js server is broadcasting? Not sure I understand your question correctly, technically 2 apps can talk to each other via socket(bi-directtional), You can use 'net' module of nodejs v6.5.0. Or take a look at socket.io lib.
On Sun, Sep 11, 2016 at 4:03 PM, Hongliang Wang <[email protected]> wrote: > Hello all, I am writing a web server application, which is a Java program > listening to a port. Party A will be automatically sending requests to that > port and the application will process the request then generate result. In > the mean time, Party B will be reviewing the result updates on a web page. > I am not quite familiar with web coding then I did some googling and got > the impression that node.js might be the right way to go. > > Please correct me if I am wrong and also please give me some suggestions > such as > 1. which node.js module should be used to build such a web application. > 2. How could a Java application send output with node.js server. If it is > communicating with node.js server via a socket then will the Java process > itself be receiving something while node.js server is broadcasting? > > Thanks in advance. > > -- > Job board: http://jobs.nodejs.org/ > New group rules: https://gist.github.com/othiym23/9886289#file- > moderation-policy-md > Old group rules: https://github.com/joyent/node/wiki/Mailing-List- > Posting-Guidelines > --- > You received this message because you are subscribed to the Google Groups > "nodejs" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/nodejs/ff3eb729-b79b-4828-9d55-0cecb3862250%40googlegroups.com > <https://groups.google.com/d/msgid/nodejs/ff3eb729-b79b-4828-9d55-0cecb3862250%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Nguyen Hai Duy Mobile : 0914 72 1900 Skype: nguyenhd2107 -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/CAGOR8-0t7GYV_YB3uD5AeOFW2i4yybcBHJnq71xH2FHMF-E8VQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
