如何在Vscode中从Github运行Angular代码

问题描述 投票:1回答:2

任何人都可以帮助我运行我在Visual Studio代码中从Github下载的代码

angular github visual-studio-code
2个回答
2
投票

您可以直接运行angular's github project而无需在Stackblitz上下载

用stackblitz url替换github url:

https://github.com/取代https://stackblitz.com/github/

示例: -

GitHub url : https://github.com/onecompileman/angular-stateside
replace with :  https://stackblitz.com/github/onecompileman/angular-stateside

或者从您的计算机上运行github下载的角度项目。

注意:您必须在计算机中安装nodeJS和angular-cli。

进入下载的文件夹。

并打开命令提示符。并在完成后编写命令:npm install。写ng serve --open

并在您的浏览器中自动打开您的项目。


2
投票

试试吧

  1. 使用相应的下载文件夹打开VS代码
  2. 在VS代码中打开集成命令提示符/终端
  3. 运行npm install命令
  4. 运行ng serve命令
© www.soinside.com 2019 - 2024. All rights reserved.