Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danwahlin/angularappdevcoursecode
Code used in the Angular Application Development course.
https://github.com/danwahlin/angularappdevcoursecode
Last synced: 11 days ago
JSON representation
Code used in the Angular Application Development course.
- Host: GitHub
- URL: https://github.com/danwahlin/angularappdevcoursecode
- Owner: DanWahlin
- Created: 2016-05-09T04:44:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T05:23:06.000Z (over 1 year ago)
- Last Synced: 2024-04-08T18:03:19.487Z (8 months ago)
- Language: TypeScript
- Homepage:
- Size: 5.85 MB
- Stars: 17
- Watchers: 4
- Forks: 30
- Open Issues: 8
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
This repository is for the Code with Dan Angular/TypeScript development course.
To build the labs do the following:
Download the repository code and extract it to your machine (or use `git clone https://github.com/danwahlin/AngularAppDevCourseCode`).
1. Run `npm install` from a command prompt at the root of the folder.
1. Run `npm run setup` to run the lab setup process.## Behind a Corporate Proxy?
If you're behind a proxy you'll need to configure your proxy server with npm:
npm config set proxy http://user_name:[email protected]:your_proxy_port
npm config set https-proxy https://user_name:[email protected]:your_proxy_port
Get details here:
http://wil.boayue.com/blog/2013/06/14/using-npm-behind-a-proxy/
You'll also need to set the following environment variables in order for the lab setup
process to work correctly and get out through the proxy:#### Windows
setx HTTP_PROXY http://user_name:[email protected]:your_proxy_port
setx HTTPS_PROXY https://user_name:[email protected]:your_proxy_port
#### Mac
export HTTP_PROXY http://user_name:[email protected]:your_proxy_port
export HTTPS_PROXY https://user_name:[email protected]:your_proxy_port
More details here: https://www.npmjs.com/package/request#proxies