How to directly run react and Vue compiled files

person github

If you only have compiled files, you can still host them via an HTTP server. Here are some simple steps:

  1. Install an HTTP server : You can choose a simple HTTP server such as Python’s http.server module or Node.js’ http-server module. For example, if you choose to use http-server, you can install it through npm (the package manager for Node.js):

    npm install -g http-server
    
  2. Start the server : You can then start the server in the compilation directory of your React application (usually the build directory). For example, if you use http-server, you can run the following command:

    http-server ./build
    

    This will start an HTTP server on your local machine and you can access your application via http://localhost:8080 (or the actual address and port of the server).

Please note that this is just a basic solution, suitable for local development and testing. If you want to deploy your React application in a production environment, you may need a more complex server configuration, including HTTPS support, routing configuration, cache control, etc. You may also want to consider using a dedicated static file hosting service such as GitHub Pages, Netlify, or Vercel.

Guess you like

Origin blog.csdn.net/m0_57236802/article/details/135340790