为什么在线上传时看不到我的Web应用程序主页?

时间:2018-10-16 16:12:13

标签: node.js

我已经用入口文件index.js构建了一个NodeJS应用程序,该文件为我所有的静态文件(css,文件,视图)提供服务。当我将应用程序上传为在线时,我看不到我的主页,而是主机网站或服务器显示一条消息,说:you are seeing this page because you don't have index.html or index.php file in your public folder我有index.js

<!--pixels game
     > controllers
     > css
     > img
     > js
     > views 
       index.js
       package-lock.json
       storage.json

1 个答案:

答案 0 :(得分:0)

创建包含index.js的index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <script type="text/javascript" src="./index.js"></script>
    <title>My Page</title>
  </head>
  <body>
    <noscript>
      You need to enable JavaScript to run this app.
    </noscript>
    <div id="root"></div>
  </body>
</html>