Antman writes software

Antman writes software

Follow
homeAbout mebadgesnewsletter
Tag

Node.js

#nodejs

More content

Read more stories on Hashnode


Articles with this tag

Implementing the Outbox Pattern in Nodejs and Postgres

Apr 23, 202311 min read

As applications scale, infrequent problems become significant. A network failure for 0.1% of requests is trivial at 1,000 requests per day, but a...

Implementing the Outbox Pattern in Nodejs and Postgres

Stop catching errors in TypeScript; Use the Either type to make your code predictable

Oct 23, 20217 min read

In some languages such as Java, methods or functions can provide type information about the Exceptions or Errors they may throw. However in...

Stop catching errors in TypeScript; Use the Either type to make your code predictable

Functional Singletons in TypeScript With Real Use Cases

Aug 22, 20218 min read

Singletons are commonly used in Object Oriented Programming when we want to enforce that there is only ever a single instance of a class. This might...

Functional Singletons in TypeScript With Real Use Cases

Solve Recursive Problems Faster With This Approach

Aug 8, 20218 min read

If you write functional code, you will encounter problems where a recursive algorithm is an appropriate solution. However, if you've come from an...

Solve Recursive Problems Faster With This Approach

Easy Node Postgres fixtures with tiny-fixtures

May 18, 20214 min read

Because integration testing against a database should be easy and repeatable ยท Years ago, I used to work almost exclusively with a Python web framework...

Easy Node Postgres fixtures with tiny-fixtures

TypeScript's Discriminated Unions With Real Use Cases

May 16, 20217 min read

Discriminated Unions are a powerful TypeScript feature that can lead to some very robust code that scales well on large teams. However it is a rather...

TypeScript's Discriminated Unions With Real Use Cases