DEV Community

fs.writeSync

Radheshyam Gupta on June 14, 2022

can i use fs.writeSync in react app,
please help me regarding this issue.

Thanks

Collapse
 
khokon profile image
Khokon M.

React is a client side application, and client side application can't access file system.

Collapse
 
radhe65gupta profile image
Radheshyam Gupta

Please,can you help me regarding this?,

Collapse
 
emmiep profile image
Emmie Päivärinta

What exactly do you want to accomplish?

Thread Thread
 
radhe65gupta profile image
Radheshyam Gupta

i want to create react app and i use fs.writeSync

Thread Thread
 
emmiep profile image
Emmie Päivärinta

Yes, but what kind of file do you want to write, and why? Maybe writeSync isn't the solution.

Thread Thread
 
radhe65gupta profile image
Radheshyam Gupta

i want to save data in the form of json file in local

Collapse
 
zabdeldjallil profile image
Djilou

Option 1:You can make a node js file in your react project then run a node ./nodescript.js in your hosting server.
Option 2: make a small node js server that you will send a request to from your react app (using fetch or axios)