Tutorial

Career

What do dev, staging, and prod mean?

When you write code, it has to make it out to your customer somehow, often with a few stages in between your editor and the customer's computer. In this post we'll walk through common ones and why they exist.

Read
Tutorials

What is Webpack Externals?

Webpack externals is a way of loading in dependencies that are not installed in the node_modules folder. There are a few key points to grasp about this concept to use it properly.

Read
Tutorials

What is Snowpack? How does it work?

Snowpack is a new bundler, similar to Webpack, Parcel, and Rollup, but with some important differences.

Read
JavaScript

Function Declarations vs Function Expressions

A brief explanation of the difference between a function declaration and a function expression in JavaScript.

Read