Reputation: 7628
I made up desktop application using java few years ago. It is no problem to use until now, but these day I think it's better way to run web application than desktop, for some reasons. anyway, I use some objects in java desktop application, for example...
BufferedReader, DataOutputStream, InputStreamReader, OutputStreamWriter, PrintWriter, HttpUrlConnection ....
Do javascript have such objects supporting similar fucntions...? I'm afraid to they don't have it. I'm just newbie on this, It is just a hobby. so I don't know much about it. but I heard these day's hottest language is javascript, so I just want to jump to javascript...so please help me if you know about something. thanks.
Upvotes: 1
Views: 55
Reputation: 1077
Although the default JavaScript language doesn't allow reading and writing to files the program node.js is designed to act as a server side JavaScript and does allow reading and writing of files along with a broad npm library to add different functionalities. More information on the nodejs web site
Upvotes: 1