Angular 7 Authenticated Route Guard

Comment

Angular 7 Authenticated Route Guard

In this post we’ll add a route guard that only allows the user to navigate to the /beer route if they’re authenticated. The new AuthRouteGuard will determine if the user is authenticated via a NGRX store using a selector that checks for the existence of a JWT.

Comment

WHY SOFTWARE PROJECTS FAIL (SERIES): HASTE

1 Comment

WHY SOFTWARE PROJECTS FAIL (SERIES): HASTE

Without a doubt, the number one reason we see some software projects fail is haste. Nothing is worse than a great idea poorly and hastily executed. Such ideas quickly fail for several reasons which we will outline here for considerations.

1 Comment

Add JWT Token to Angular HTTP Requests Using NGRX

1 Comment

Add JWT Token to Angular HTTP Requests Using NGRX

It’s become pretty commonplace to authenticate and authorize web clients using JWTs (JSON Web Tokens) via HTTP request headers; it’s also become fairly popular to leverage some form of state management in web clients with a flavor of Redux. In this post I’ve created a simple web client with Angular CLI and NGRX that demonstrates how to retrieve a saved JWT from a NGRX store and apply it to all API requests using an HTTP interceptor.

1 Comment

Adding Bootstrap to a Simple App

Adding Bootstrap to a Simple App

A lot of the seed projects we use come loaded with everything you need to get an app built quickly. This is a huge time-saver since there's no use in re-inventing the wheel. But, sometimes we sacrifice understanding for speed.

Adding Bootstrap to an app isn't anything earth shattering, but, there are a couple of pieces to make to making sure it works correctly. 

Angular Development and Beer

Angular Development and Beer

Now that I have your attention...

Like many of you, given the mercurial nature of change in JS development, I often find myself using seed projects and hello world guides to understand a new concept. This is all well and good to get one up to speed quickly on a topic, but there are downsides to it. I find that I tend to fall into the jack-of-all-trades but master-of-none syndrome....Read more.

Tale of Four Spoons

Tale of Four Spoons

Over the years we've been tasked with participating in some very large and complex enterprise web applications. In that time we've witnessed several attitudes toward code quality which we've categorized into four metaphorical archetypes...Read more.