如何在没有webserver的情况下运行简单的angularjs应用程序

时间:2016-04-21 10:26:07

标签: angularjs web-applications webserver project

我的应用程序中有三个文件 - index.html,app.js和login.html。现在我怀疑如何像http://localhost/index.html那样运行我的项目。当我试图点击index.html文件时,它只是打开一个空白页面。请帮帮我。

2 个答案:

答案 0 :(得分:0)

一些简单的方法是使用php和python附带的内置web服务器。打开shell窗口cd到您的文件所在的目录:

python -m SimpleHTTPServer

php -S localhost:8000

然后你可以在你的浏览器中转到http://localhost:8000,如果你看到一个空白的屏幕,你可能会有错误,所以可以查看开发者控制台。

答案 1 :(得分:0)

复制它并将其粘贴到一个文件中并将其命名为package.json并将其放在项目的根目录中。然后使用命令行工具导航到项目根目录并键入npm install 1st让包安装,然后npm start。

然后转到localhost:8000 附:需要安装第一节点

{
  "name": "npm server",

  "dependencies": {
   //your dependencies here
  },
  "devDependencies": {
    "http-server": "0.9.0"
  },
  "scripts": {
    "prestart": "npm update",
    "start": "http-server -a localhost -p 8000"
  }
}