SPFx Development Environment Setup: The Complete Guide

Setting up an SPFx development environment can be tricky. Here’s my step-by-step guide to avoid common pitfalls. Prerequisites Node.js 10.x (not 12.x yet – compatibility issues) Visual Studio Code Office 365 developer tenant Installation VS Code Extensions SPFx Snippets ESLint Prettier Azure Account (for deployments) Create First Project Common Issues Node version mismatch: Use nvm […]

Read more โ†’

Introduction to Event-Driven Architecture

I’ve spent the last year migrating systems from request-response to event-driven patterns. The shift in thinking is significant, but the benefits are real. Here’s my introduction to event-driven architecture (EDA) and why you should care. What is Event-Driven Architecture? Instead of services directly calling each other (request-response), they communicate through events. When something happens, a […]

Read more โ†’

TypeScript Basics for C# Developers

If you’re a C# developer dipping your toes into frontend development, TypeScript will feel surprisingly familiar. It’s JavaScript with types, and Microsoft designed it with C# developers in mind. Here’s what you need to know. Why TypeScript? JavaScript is… flexible. Too flexible sometimes. TypeScript adds compile-time type checking, which catches bugs before they hit production. […]

Read more โ†’

Entity Framework Core 2.2: Performance Improvements

EF Core 2.2 shipped alongside .NET Core 2.2, and while it’s not a revolutionary release, the performance improvements are worth talking about. Here’s what I’ve noticed in real-world usage. Spatial Data Types Finally! If you’ve been waiting to use geography types with EF Core, the wait is over. Install the spatial package: Then use NetTopologySuite […]

Read more โ†’

SharePoint Framework (SPFx) 1.7: Building Modern Web Parts

SPFx 1.7 dropped a few weeks ago, and it’s a solid release. If you’re building SharePoint customizations in 2019, here’s what you should know about the latest version of the SharePoint Framework. What’s New in SPFx 1.7 This release focuses on stability and developer experience. Not flashy, but important. Dynamic Data The dynamic data capability […]

Read more โ†’