Writing Better Apps: Implementing Configuration
"Configuration" is the settings your application uses to change its behavior at runtime. Configuration might include simple values that adjust timeouts on requests to more complicated settings that swap out database or cloud service providers.
The process of collecting and validating configuration is critical to a stable . . .
Posted in: craftsmanshipnodejstypescript
Writing Better Apps: Initialization
Whether you are writing a script, a multicommand CLI utility, or a networked server, applications should follow the same initialization pattern:
- Get configuration
- Build dependencies
- Resolve and execute the entry-point function
Get configuration
Using the environment, and possibly command line . . .
Posted in: nodejstypescript
Templatizing Github "Template Repos"
Adding the (obvious) missing feature to Github Template Repositories
tl;dr
Get better use out of Github Template Repositories by introducing your own templating mechanism. Using a combination of gomplate, tree
, and bash
can get you there pretty easily. This article demonstrates an example of how it's done.
Last year, Github added a new feature called Template Repositories. . . .
Thoughts on using Kafka with Node.js (node-rdkafka)
Let me start by saying, node-rdkafka is a godsend. When we first started using it, the library was the only one fully compatible with the latest version of Kafka and the SSL and SASL features. I owe webmakersteve and other contributors all a six-pack of beer for making this possible (thank you!!!!).
With that said, I guarantee you . . .
Posted in: kafkamicroservicesnodejs
Avoid Synchronous Functions in Node.js
Sync Functions can dramatically slow down your app and they are almost never necessary.
tl;dr
Most synchronous methods in Node.js (statSync
, readFileSync
, etc.) have asynchronous alternatives (via callback). Using util.promisify
can easily make these methods async/await
compatible. Using the Promise
-based equivalents can greatly speed up your application. In fact, I'd argue there's never a need for the . . .
Posted in: nodejstypescript
A Gentle Introduction to TypeScript
Talk given at Fullstack Talks (NC San Diego) - 02/2o/2020
This information has been updated since the talk (mostly extra info added, some grammar/spelling errors corrected).
Who am I?
- Principal Software Engineer at Peachjar
- 3/4 Stack Developer (or Pear-shaped Developer)
- Former Marine Corps Meteorologist
- Virgo
- Foodie
- . . .
Distributed Locking with Postgres Advisory Locks
TL;DR
Postgres Advisory Locks are a great solution for arbitrary application locks, particularly in scenarios where you are already using Postgres and have a need to block concurrent mutations to a resource (that resource DOES NOT have to be data in Postgres).
Concurrency is hard
We ran into a problem . . .
Posted in: microservicesnodejspostgres