Home >Web Front-end >JS Tutorial >How to Safely Open Local HTML Files in Chrome?
Navigating this issue necessitates launching the HTML file through Google Chrome in "--allow-file-access-from-files" mode. However, it has proven unsuccessful despite repeated attempts to implement the following steps:
The command proposed in the steps poses a significant security risk by granting unrestricted access to the local file system. A far more secure solution lies in setting up a local HTTP server.
Install the http-server package globally using Node's package manager:
npm install -g http-server
To initiate the HTTP server within a specific project directory, simply execute:
Eg. d:\my_project> http-server
A message will appear, indicating the successfully running server.
Alternatively, Python can be installed on Windows to execute the following commands.
As Python is generally included in Linux distributions, executing the following command in the project directory will suffice:
python -m SimpleHTTPServer
Your browser can then access the page via http://localhost:8000.
For Python 3, the command is modified to:
python3 -m http.server.
Adopting this approach eliminates potential security vulnerabilities while providing a simple solution to the underlying issue.
The above is the detailed content of How to Safely Open Local HTML Files in Chrome?. For more information, please follow other related articles on the PHP Chinese website!