如何在不使用npm install的情况下手动安装Angular CLI

时间:2019-05-14 20:15:29

标签: node.js angular eclipse npm angular-cli

由于我的公司有一些代理可以阻止从外部网站下载,因此我无法使用class TodoApp extends React.Component { constructor(props) { super(props); this.onTouchMove = this.onTouchMove.bind(this); this.state = { touchCurrentX: 0 } } onTouchMove(ev) { console.log('onTouchMove'); const x = ev.touches.item(0).screenX; this.setState({touchCurrentX: x}); } render() { const child = this.state.touchCurrentX < 600 ? React.createElement('div', {key: 0, id: 'child'}, []) : null; const debug = React.createElement('span', {key: 1}, this.state.touchCurrentX); return React.createElement('div', {id: 'parent', onTouchMove: this.onTouchMove}, [child, debug]); } } ReactDOM.render(React.createElement(TodoApp, {}, []), document.querySelector("#app")) 下载Angular cli。

我在Corporate Proxy Server后面找到了一些资源来执行此操作,但是它需要我没有访问权限的admin。

我可以通过什么方式下载软件包并手动安装?

谢谢。

我发现了Angular Cli github page

我希望在本地环境中使用Angular Cli。

1 个答案:

答案 0 :(得分:1)

您可以将npm配置为使用公司的代理服务器

npm config set http-proxy http://<username>:<password>@[proxy-server-host-name]:[Port]
npm config set https-proxy https://<username>:<password>@[proxy-server-host-name]:[Port]

例如

npm config set http-proxy http://testuser:testpassword@proxy.testserver.com:9091
npm config set https-proxy https://testuser:testpassword@proxy.testserver.com:9091