How to resolve Nodejs: Error: ENOENT: no such file or directory
Your app is expecting to find a file at /home/embah/node/nodeapp/config/config.json
but that file does not exist (which is what ENOENT
means). So you either need to create the expected directory structure or else configure your application such that it looks in the correct directory for config.json
.
After going through so many links and threads and getting frustrated over and over again, I went to the basics and boom! it helped. I simply did:
npm install
I don't know, but it might help someone :)
92% additional asset processing scripts-webpack-plugin× 「wdm」: Error: ENOENT: no such file or directory, open....==> if anyone faced to such error, you should do followings: 1) you should check the if the file path is correct in angular.json file.
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.js"
],
2) you should press crtl+c and re run the project.
@olleh answer worked because npm install
will create a node_modules
directory in the current path where it is executed. So, while using the file server system module, the below declaration locate files from the top level directory of node_modules
.
const fs = require('fs')