在安装node-config和@ types / config之后:
npm install config
npm install @types/config
当我尝试在我的应用中使用时:
import config from 'config';
我遇到了错误:
Module not found: Error: Can't resolve 'fs'
我安装了'fs'
模块,但仍然出现此错误。
Module not found: Error: Can't resolve 'fs'
答案 0 :(得分:0)
听起来好像您正在尝试在node-config
模块不可用的前端代码或React Native中使用fs
。 [不支持])https://github.com/lorenwest/node-config/issues/367)。
将fs
与Node.js结合使用时,无需安装node-config
模块-fs
模块内置在Node.js中。