Skip to content

Phil Nash | Blog

A developer, speaker, blogger, developer advocate, sausage dog owner and beer lover.

  • By Phil Nash
  • Based in Australia
  • Roughly four posts per year
  • First post on

Posts per year

Data for this chart is available in the table below
Posts per year
Year starting Posts
2019 3
2020 7
2021 3
2022 3
2023 6
2024 0

Any gaps could be due to errors when fetching the blog’s feed.

Most recent posts

JavaScript is getting array grouping methods
Grouping items in an array is one of those things you've probably done a load of times. Each time you would have written a grouping function by hand or perhaps reached for lodash's groupBy function. …
On , 877 words
Node.js includes built-in support for .env files
With the recent release of version 20.6.0, Node.js now has built-in support for .env files. You can now load environment variables from a .env file into process.env in your Node.js application completely dependency-free. Loading an …
On , 634 words
Easy and accessible pagination links for your Astro collections
Generating pagination links is not as straightforward as it may seem. So, while rebuilding my own site with Astro, I released a <Pagination /> component on npm as @philnash/astro-pagination that anyone can use in their …
On , 914 words