2017-09-27 92 views
0

我試圖使用readFilefs模塊(節點版本5.3.0)。但我收到一個錯誤,說模塊沒有找到。我需要分別安裝fs模塊嗎?如果確切的話要安裝哪些軟件包?它默認不可用?我是否需要在節點中安裝fs模塊

var freader = require('fs'); 
freader.readFile(... 
+2

'fs'這是一個原生的Node.js模塊,你不需要它_install_。 – alexmac

+0

是的。 @alexmac這也是我的理解。這就是爲什麼我很厭煩。 –

回答

3

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


編輯here is the documentation of fs for node v5.3和它的同

+1

是的,@Gregory。我知道它應該在那裏默認。但問題仍然存在。讓我嘗試重新安裝。 –

+0

你有什麼確切的堆棧跟蹤? –

+0

'TypeError:filesys.readFile is not a function' –

相關問題