Understanding Nuxt 3 minimal project structure
When generating a new Nuxt 3 you’re presented with a minimal project structure, we dive into this structure and find out what we should do next
When generating a new Nuxt 3 you’re presented with a minimal project structure, we dive into this structure and find out what we should do next
configuration to control and ensure certain types of files and directories
are not included into our git repository
A package is basically a folder that contains scripts that can be run and used by JavaScript applications, which is to
say that any folder that has some JavaScript code could basically be considered package, also commonly referred to as a
Module.
Explore the latest version of Nuxt framework and how to start a new project using Nuxt 3 and Vue 3
Data validation in API’s is crucial task yet is often overlooked, with Entity Framework Core entity data validation is made easier and it can also be expanded upon to provide robust solutions
we will explore how we can use Cake to build and publish our Docker containers to a Docker Container Registry in this example we will be using Github Container Registry.
Improve your development workflow by connecting to your database within your IDE
With introduction of MsBuild we can now manage all these property settings and more in a single file that we can place in the Root of our solution directory along our solution file and it will be applied to all projects defined in the solution automatically.
To pack a nuget package for testing locally is actually a fairly trivial process of using the dotnet pack and defining a local folder you want your package to be located.
The strategy design pattern splits the behavior (there are many behaviors) of a class from the class itself. This has some advantages, but the main draw back is that a client must understand how the Strategies differ.
vertical slice architecture separates applications into “vertical slices”, representing the part of each layer that creates a specific feature
Exploring the .net minimal Api templates and the how and why they can be useful for developers
Statement management can be a key aspect of any application design. It tends to cover a broad range data storage capabilities in your application, which may include accessing files on the file system or accessing a database of some description, with the purpose of manipulating the state of an object.
In this article we’ll explore how to create a simple state management microservice using dapr
JSONPatch can help update document resources in a very explicit way.
C# 9.0 introduces record types, a reference type that provides synthesized methods to provide value semantics for equality. Dive in deeper to understand what this means
GitHub Actions enables the user to create custom Software Development Life Cycle (SDLC) workflows in their GitHub repositories. Enabling the repository owner to write individual actions and then combine them to create a custom workflows of their choice for their project. These workflows could be anything that software developers would want to typically automate in their day to day processes.
exploring how to make use of MediatR Pipeline Behaviors to address cross-cutting concerns like caching, logging, validation, security and transactions
Different types of data structures are suited to different applications and some are suited to to highly specific types of tasks. The most commonly found data structures most software developers will be familiar with are Queues and Stacks.