I am also active at:
Sunday, May 7, 2023
Node.js – Error ‘console’ is undefined
I just installed Node.js on a new system and wanted to make sure it worked. I tested it with a simple hello world script.
Contents of the node.js fileconsole.log("Hello node");
Then I attempted to run it:C:\>node node.js
Which produced the following error:Script: C:\node.js
Line: 1
Char: 1
Error: 'console' is undefined
Code: 800A1391
Source: Microsoft JScript runtime error
Solution:
1. On the node.js file and right click -> properties
2. In front of Opens with: click on the 'change' button.
3. To change it from 'Microsoft script' host to Node.js:
a) click on 'more apps' -> scroll down and click on 'look for more apps on this PC' -> a window will pop up , in that go to the directory where 'nodejs' is installed in your PC. -> Windows(C:) -> Program Files(x86) -> nodejs -> click on the 'open' button -> click on 'node' Application file icon and finally click on 'open' again.
4. click on 'Apply' -> 'ok' buttons.
That's it.
How can I run a C++ program directly from Windows?
How-can-I-run-a-C-program-directly-from-Windows
-
Acronym Full Form AJAX Asynchronous JavaScript and XML API Application Programming Interface APK Android Application Package ASP Activ...
-
#include<stdio.h> int main() { int M,N,q; scanf("%i %i",&M, &N); if((M%N)!=0) {printf("0&quo...
-
"A good company understands that problem solving ability and the ability to learn new things are far more important than knowledge o...