.npmrc/.yarnrc proxy=http://username:[email protected]:xxxx https-http://username:[email protected]:xxxx registry=https://registry.npmjs.org strict-ssl=false
Category Archives: Webdevelopment
Behind a corporate proxy – Git
.gitconfig [credential] helper = manager [url “https://”] insteadOf = git:/ [url “https://github.com/”] insteadOf = [email protected]: [http] proxy = http://username:[email protected]:xxxx [https] proxy = http://username:[email protected]:xxxx If you are using macOS, change the credential from manager to osxkeychain. [credential] helper = osxkeychain
[email protected] – add API proxy
Create a file like “proxy.json” in your [email protected] projects’ root. { “/api”: “http://localhost:1337” } start your development server with: 🍰 $ ng serve –proxy-config proxy.json All request to http://localhost:4200/api/v1/endpoint will now be proxied to http://localhost:1337/api/v1/endpoint Pro Tip: add “start”: “ng serve –proxy-config proxy.json”, to the scripts section inside of your package.json and use the […]
Lena Reinhard – “A Talk About Nothing” | .concat() 2015
Shortlisted in .net Conference Talk of the Year:Â Lena Reinhard:Â A TALK ABOUT NOTHING
Philip Roberts: What the heck is the event loop anyway? | JSConf EU 2014
How to Start Using Angular 2.0 with Your Angular 1.0 Code Base
Making of COPE
Yesterday i found this one in my archives. It is a clip made out of many images, that have been taken during the development of COPE at Bechtle back in 2014/2015. If you like it and want to create something like this on your own. Here is a short step by step guide on […]
2,5 years on AngularJS – Part 1
As far as I can remember the first version of AngularJS I’ve ever tried was vegetable-reanimation (released Jun 30, 2011). I was doing some research for my master thesis in those days. After developing web stuff for more than a decade, I dunno way, but I was blasted from day one. So Angular was the framework I used for […]