Is it possible to write data to file using only JavaScript?

Some suggestions for this –

  1. If you are trying to write a file on client machine, You can’t do this in any cross-browser way. IE does have methods to enable “trusted” applications to use ActiveX objects to read/write file.
  2. If you are trying to save it on your server then simply pass on the text data to your server and execute the file writing code using some server side language.
  3. To store some information on the client side that is considerably small, you can go for cookies.
  4. Using the HTML5 API for Local Storage.

Leave a Comment