ASP.NET Core How To Create a Self-Signed SAN Certificate - The Easy Way For a current project, I'm developing an ASP.NET Core 2.1 based multi-tenancy Web API. To test locally, I added some domains to my hosts file: 127.0.0.1 product.local 127.0.0.1 tenant-a.product.local 127.0.0.1 tenant-b.product.local In
Node.js Node.js & ASP.NET Core 1.0: A Usage Comparison - Part 4: Cross-Origin Resource Sharing Welcome back to the fourth part of the series [https://manuel-rauber.com/tag/series-node-js-and-asp-net-core-1-0-usage-comparison/]! Don't forget that everything explained in this post can be seen in the open-source GitHub project [https://github.com/thinktecture/nodejs-aspnetcore-webapi/]. The post itself contains important code pieces only. Same Origin Policy For security
ASP.NET Core Node.js & ASP.NET Core 1.0: A Usage Comparison - Part 3: Basic Routing Welcome back to the third part of the series [https://manuel-rauber.com/tag/series-node-js-and-asp-net-core-1-0-usage-comparison/]! Don't forget that everything explained in this post can be seen in the open-source GitHub project [https://github.com/thinktecture/nodejs-aspnetcore-webapi/]. The post itself contains important code pieces only. In this part we take
Node.js Node.js & ASP.NET Core 1.0: A Usage Comparison - Part 2: Web API Server Setup Welcome back to the second part of the series [https://manuel-rauber.com/2016/03/07/node-js-asp-net-core-1-0-a-usage-comparison/]! Don't forget that everything explained in this post can be seen in the open-source GitHub project [https://github.com/thinktecture/nodejs-aspnetcore-webapi/]. The post itself contains important code pieces only. In this part
Node.js Node.js & ASP.NET Core 1.0: A Usage Comparison - Part 1: Intro Some days ago I was talking about Web APIs with Node.js for .NET developers [https://speakerdeck.com/manuelrauber/web-apis-mit-node-dot-js-fur-net-entwickler-uber-den-tellerrand-geblickt] at the BASTA! [https://basta.net/] Conference in Darmstadt, Germany. We from Thinktecture [http://thinktecture.com] had a blast at this great conference! My main focus in this session was
ASP.NET Core Back to the roots: Creating thin Web APIs using the Core of ASP.NET Core 1.0 I'm currently fiddling about ASP.NET Core 1.0 [https://docs.asp.net/en/latest/] using VS Code [https://code.visualstudio.com/] on my Mac. I have a simple scenario: Building a Web API which has CRUD operations for a CustomerModel. So purely HTTP things. :-) My controller