我試圖使用readFile
從fs
模塊(節點版本5.3.0)。但我收到一個錯誤,說模塊沒有找到。我需要分別安裝fs
模塊嗎?如果確切的話要安裝哪些軟件包?它默認不可用?我是否需要在節點中安裝fs模塊
var freader = require('fs');
freader.readFile(...
我試圖使用readFile
從fs
模塊(節點版本5.3.0)。但我收到一個錯誤,說模塊沒有找到。我需要分別安裝fs
模塊嗎?如果確切的話要安裝哪些軟件包?它默認不可用?我是否需要在節點中安裝fs模塊
var freader = require('fs');
freader.readFile(...
Here是文檔約fs
:
使用FS作爲嘗試。
File I/O is provided by simple wrappers around standard POSIX functions. To use this module do require('fs'). All the methods have asynchronous and synchronous forms.
你沒有npm
包安裝,它包含在node.js
。
是的,@Gregory。我知道它應該在那裏默認。但問題仍然存在。讓我嘗試重新安裝。 –
你有什麼確切的堆棧跟蹤? –
'TypeError:filesys.readFile is not a function' –
'fs'這是一個原生的Node.js模塊,你不需要它_install_。 – alexmac
是的。 @alexmac這也是我的理解。這就是爲什麼我很厭煩。 –