Skip to content
Advertisement

Create a json file from a html form


I have a html form and I want to create a json-file with data introduced in html fields.
Right now, it is visible in console json-text but it doesn’t create a new json-file with this content.
Also,I have an error, Uncaught ReferenceError: require is not defined.
JavaScript

Advertisement

Answer

It seems you are on the frontend. You can’t write files like this because of security. This would result in every website with some JavaScript being potentially able to write files to your system and you really don’t want that. Additionally fs is a Node API that is not available in the browser.

One option would be to download the JSON file from the frontend which you could do using the following code:

JavaScript

If you add that to your page the save dialog will appear on a user’s system. Here the one I am getting on Ubuntu:

Save dialog on Ubuntu for helloWorld.json

And here the content of the downloaded file: helloWorld.json content after download

Please read this thread on the pros and cons of using an approach like this.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement