Is it possible to write a string to a file (create the file if it doesn't exist) without any external Javascript libraries , purely with Javascript code ?
I'm trying to implement a client side code that whenever it reaches a page (.ASPX)
it writes few strings into a file (let's say output.txt
) and that's it .
From everything I see over the internet , JavaScript is not allowed to write anything to the hard drive .
Is that so ? no workarounds ?
As said in the comments, what you sound to try to achieve is intentionally very restricted for obvious security reasons of the visitor's machine.
Now "workarounds" could exist, depending on the actual objective you are trying to achieve (but which you did not mention).