let arr = [];
function getData(fileName, type) {
return fs.readFile(fileName,'utf8', (err, data) => {
if (err) throw err;
return new Promise(function(resolve, reject) {
for (let i = 0; i < data.length; i++) {
arr.push(data[i]);
}
resolve();
});
});
}
getData('./file.txt', 'sample').then((data) => {
console.log(data);
});
When I use above code and run it in command line using nodejs I get following error.
getData('./file.txt', 'sample').then((data) => {
^
TypeError: Cannot read property 'then' of undefined
How can I solve this?
Here is a one-liner as of node 10.2.0:
(async () => console.log(String(await require('fs').promises.readFile('./file.txt'))))();
Yes, it is now out of the box.
Update for current node As of node 10.0.0 you can now use
fs.promises
:Nobody told about
util.promisify
so I'm going to post, however old the question is. Why are you having this message?getData
is a wrapper forfs.readFile
file here.fs.readfile
is not a thenable (it does not implement athen
function). It is built on the other pattern, the callback pattern. The most well-known thenable are Promises, and that's what you want to get fromreadFile
I believe. A little reminder: Mozilla - PromisesSo what you can do is either implement it yourself as did @hackerrdave or I would suggest using
promisify
: this function is a built-in function of Node.js which was implemented to transform the callback-based function into promised based. You will find it here: Node.js Documentation for util.promisfyIt basically does the same as @hackerrdave but it's more robust and built-in node util.
Here's how to use it:
You'll want to wrap the entire
fs.readFile
invocation inside a newPromise
, and then reject or resolve the promise depending on the callback result:[UPDATE] As of Node.js v10, you can optionally use the built-in Promise implementations of the
fs
module by usingfs.promises.<API>
. In the case of ourreadFile
example, we would update our solution to usefs.promises
like this: