One of the main reasons for using .NET Core is that you can run it on multiple platforms and architectures. So you can build an app that will run on Windows, but also on Linux, macOS and on different architectures like x86 and ARM. This is perfect for lots of scenarios, including desktop applications. You […]
Category Archives: Hosting Tutorial
Tips for Learning ASP.NET Core MVC
You want to build applications using ASP.NET Core MVC ASP.NET Core 2.0 has landed and every blog post, newsletter and Microsoft article seems to be talking about it. Now seems like a good time to learn ASP.NET Core and you want/need to be able to build real business applications with it. So you follow a […]
Easy to Set-up Node Config Following These Best Practices?
KEEPING IT TOGETHER Instead of defining parts of the config in separate files, it is strongly advised to have a config.js file that will hold all configuration in a centralized way. This will help other developers to locate and adjust config values much more easily, and by having one centralized file ensures reusability of config values and […]