所以我使用Angular 2完成了本教程制作电影查找器应用程序,但是我们总是必须在命令行中运行'npm start'。
当没有安装Node.js时,如何让某人在他们的机器中本地查看我的项目?
我的项目如下: https://github.com/Jerick821/moviefinder
我还在下面找到了以下批处理文件,但是它无法正常工作:(
@echo off
cd moviefinder
npm install -g http-server
hs
start http://localhost:1234/
如何制作批处理文件来运行此应用程序?
答案 0 :(得分:0)
尝试此QuickStart example on Plunker而不安装任何内容。
<title>Angular Quickstart</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {color:#369;font-family: Arial,Helvetica,sans-serif;}
</style>
<!-- Polyfills -->
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
<script src="https://unpkg.com/zone.js@0.7.4?main=browser"></script>
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('main.js').catch(function(err){ console.error(err); });
</script>
<body>
<my-app>Loading AppComponent content here ...</my-app>
</body>