Projects

Some of my projects.


PackCheck

PackCheck is a dotnet tool for checking and upgrading versions of NuGet packages. For NodeJS projects I like to use npm-check-updates and not the built in npm update command. But why? Simple. I want to directly see in the package.json file which versions are installed. NCU does exactly that, it changes the versions in the package.json file.

When I started to learn C# I was searching for something similar over at nuget.org but could not find anything. So I thought building such a dotnet tool would be a nice way for exploring C#.

RouteCheck

RouteCheck is a dotnet tool for checking and viewing routes of an web API in your Terminal. Projects like Phoenix or Laravel have that functionality built-in. But not ASP.NET Core, so I thought I could build a simple solution for that.