Friday, May 17, 2024
 Popular · Latest · Hot · Upcoming
105
rated 0 times [  109] [ 4]  / answers: 1 / hits: 138096  / 8 Years ago, tue, may 24, 2016, 12:00:00

I am relatively new to Node.js and have been looking around but cannot find a solution. I did check the require javascript file and it does not seem to have a method for readFileSync. Perhaps I don't have a proper require file? I had a hard time finding this file, everywhere talked about it but most people did not post where to get it.



I installed Node.js and have the require.js file. My current code is like this:



fs = require(['require'], function (foo) {
//foo is now loaded.
});
console.log(n *STARTING* n);
// Get content from file
var contents = fs.readFileSync(sliderImages, 'utf8');


I had a bit at first getting require to work however it seems to load the require JavaScript file. I have been following guides and I am not sure why I get this error:




Uncaught TypeError: fs.readFileSync is not a function




I have tried many fixes and cannot seem to figure this one out.


More From » jquery

 Answers
137

Node.js does not use Require.js. Require.js was built so that you could have asynchronous module loading on the client-side (in your browser).



Node.js uses CommonJS style modules. Your code using CommonJS would look like this:



var fs = require('fs');
console.log(n *STARTING* n);
var contents = fs.readFileSync(sliderImages, utf8);


If we assume you saved this in a file called main.js you would then enter this command in your console (make sure you are in the same directory as the file):



node main.js


This code will not run in the browser. Node.js runs on the server. If you want to load a JSON file on the browser side then you'll need to load it using AJAX. There are numerous resources available to show you how to do this. Be aware that you must either run your page from a server or have a special flag enabled to load in files from the file system.


[#62044] Sunday, May 22, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
karleel

Total Points: 309
Total Questions: 79
Total Answers: 86

Location: Monaco
Member since Sun, Jan 16, 2022
2 Years ago
;