Posts by Felipe Simões • 31 points
2 posts
-
3
votes1
answer322
viewsQ: Node Fs.js running in HTML
Hello, I need to use Node.js’s Fs function but am encountering errors. When running using Node use_fs.js it runs and works perfectly. However when I put it into html it always says q require is not…
-
0
votes1
answer1833
viewsQ: How to add parameter in nodejs
am beginner in dev and would like to know how to pass a parameter via function. For example: function hello(name) { console.log("hello " + name); } hello("Fulano"); If I roll Node hello, he will…