Code Examples

In this article, we'll delve into how to implement JWT using NodeJS and why I think it's the best way forward for REST architecture.

How/Why: REST API authorization with JWT in NodeJS

In this article, we’ll delve into how to implement JWT using NodeJS and why I think it’s the best way forward for REST architecture.

Read More
In this example, I’ll show you how to add helper methods to your classes with little effort using prototyping. As a bonus approach leaves you with no messes to clean up later.

How to use prototyping to make smarter code with NodeJS

In this example, I’ll show you how to add helper methods to your classes with little effort using prototyping. As a bonus approach leaves you with no messes to …

Read More
In my opinion queue workers are often overlooked and underutilized as a way of dealing with background tasks. In the bad ole days of Drupal, we were stuck with hook_cron and a single wget call to cron.php with a so-called secure key.

How to create Queue Workers

In my opinion queue workers are often overlooked and underutilized as a way of dealing with background tasks. In the bad ole days of Drupal, we were stuck with …

Read More
Quick guide to creating views bulk operation actions, useful for mass adding mass operations to your content overviews.

Drupal 9: Views bulk operation

Views bulk operations are a great tool for mass content operations in Drupal, and creating a bulk action is pretty simple.

Read More