fs.readFileSync is not a function Meteor, React

时光怂恿深爱的人放手 提交于 2019-12-05 20:58:46

Thanks for all the answers!

I have confirmed that you cannot use fs on the client side.

Instead, I made another local simple express node api and the react web app just makes a request back to the node api to get that data.

Also, you have to do this...

https://enable-cors.org/server_expressjs.html

I'm getting a 'fs.readFileSync is not a function' in Chrome debugger after trying to call readFileSync();

fs will not work in the browser. This is by design as to protect your filesystem from potential security threats.

Using low level Node packages in a browser environment

If you need access to this in a browser environment, consider making use of Electron which allows you to make use of OS level NodeJS packages in a running instance of Chromium.

fs cannot be used on the client, due to browsers restricting some javascript code.

If your code is being run on both the server and client, you can use:

if (Meteor.isClient) return;

to avoid the error. Otherwise, there should be another way to do what you're trying to accomplish, such as importing required JSON.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!