Facing below error cannot find module #3
-
|
Facing error: cannot find module c:\fbe-encrypt.mjs in windows i tried in different folder same issue attached snap of the error. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
|
It seems like you're trying to execute |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for your reply. I tried many option to try to execute the command after the fbe-decrypt.mjs fiasco but learning Node.js. pls find my cmd output. Thanks in advance. ======================================== C:\Windows\System32>cd E:\Andriod\troubleshooting\Pix33Jan2025 C:\Windows\System32>e: E:\Andriod\troubleshooting\Pix33Jan2025>cd Pixel_Tablet_API_33.avd E:\Andriod\troubleshooting\Pix33Jan2025\Pixel_Tablet_API_33.avd>node c:\fbe-decrypt.mjs ^ SyntaxError: Unexpected token '<' Node.js v23.6.1 E:\Andriod\troubleshooting\Pix33Jan2025\Pixel_Tablet_API_33.avd>node c:/fbe-decrypt.mjs ^ SyntaxError: Unexpected token '<' Node.js v23.6.1 E:\Andriod\troubleshooting\Pix33Jan2025\Pixel_Tablet_API_33.avd>node c://fbe-decrypt.mjs ^ SyntaxError: Unexpected token '<' Node.js v23.6.1 E:\Andriod\troubleshooting\Pix33Jan2025\Pixel_Tablet_API_33.avd> |
Beta Was this translation helpful? Give feedback.
-
|
Since the file The simplest correct way to download a file from GitHub, is to go to the repository's main page (i.e. the You then save the zip, and extract it to a location of your choice. The files would be binary perfect. A slightly more complex option is to view the file, and then click on the |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for detailed explanation. Lot of time wasted for such a simple thing i should have pingged you earlier. Thanks again. |
Beta Was this translation helpful? Give feedback.


Since the file
fbe-decrypt.mjsdoesn't contain<at column 7, this is likely the result of downloading the file incorrectly. A potential culprit is trying to simply press Ctrl+S on the script's page. This would result in saving the page's HTML, and not the file. GitHub's layout contains<!DOCTYPE html>on line 7, which matches the error.The simplest correct way to download a file from GitHub, is to go to the repository's main page (i.e. the
Codetab), click on the green<> Codebutton, and click onDownload ZIPin the menu that opens up.You then save the zip, and extract it to a location of your choice. The files would be binary perfect.
A slightly more complex option is to view the fil…