can i use fs.writeSync in react app,
please help me regarding this issue.
Thanks
Top comments(12)

- Locationindia
- EducationMaster of Philosophy(IT)
- WorkFull Stack Developer
- Joined
Please,can you help me regarding this?,

- Locationindia
- EducationMaster of Philosophy(IT)
- WorkFull Stack Developer
- Joined
i want to create react app and i use fs.writeSync

- Locationindia
- EducationMaster of Philosophy(IT)
- WorkFull Stack Developer
- Joined
i want to save data in the form of json file in local

Ok. Like@khokon said, for that you'd need a server. Do you already run your React app on a local server?
Personally, I usually go for something like Next.js instead, which lets you useserverless API functions, it makes it very easy to add some nodejs "glue code" to a react project.
Storing files might not be a great fit for that, if it's possible I would recommend saving your JSON data on a server instead. It's very easy to get started with for instance Redis with a library likenode-redis orioredis in Next.js, and with a service likeUpstash you can do that for free.
There are more solutions for databases specifically targeting serverless available for free or very cheap, likeMongoDB orCockroachDB.
I suggest you take a look at some databases first, in the end it might be a lot easier to deploy. I hope this helped!

- Locationindia
- EducationMaster of Philosophy(IT)
- WorkFull Stack Developer
- Joined
thanks Emmie Paivarinta

- Locationindia
- EducationMaster of Philosophy(IT)
- WorkFull Stack Developer
- Joined
can u share any reference?

- Locationindia
- EducationMaster of Philosophy(IT)
- WorkFull Stack Developer
- Joined
hello

- LocationAlgeria
- WorkSoftware engineer
- Joined
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)
For further actions, you may consider blocking this person and/orreporting abuse