Blog - Page 1 of 1


Store Netlify build data with Supabase
#Software engineering #Netlify #Ruby #JavaScript
Posted on

I've found it useful in the past to keep a close eye on build times because it can be easy to introduce code over time that drives the build time up. By the time you notice that this is becoming a pain point, it's very difficult to track down the offending pieces of code to resolve the issue.

Read more
Dropping Webpack for Vite Part 2
#Software engineering #JavaScript #Netlify
Posted on

My previous post walked through my progress with swapping Webapck for Vite using the Middleman external pipeline. I was able to quickly see great performance improvements, reduced dev server and build times and a decent drop in the number of JavaScript dependencies. But there were still some issues and I knew I could improve things. Especially after I discovered Vite Ruby.

Read more
Automated build process for my JavaScript documentation website
#Software engineering #Netlify #JavaScript
Posted on

My last blog post demonstrated how to build a JavaScript documentation website using JSDoc and have it deployed on Netlify. The process was a bit manual though so in this post I improve upon the solution by automating the build using a GitHub Action to ensure my documentation website is never out of sync with the documentation in my code base.

Read more
Building a JavaScript documentation website
#Software engineering #Netlify #JavaScript
Posted on

I think code documentation works best when it lives side by side with the code it is documenting rather than being written in a separate document. When it's separate, it becomes easy for documentation to become stale. Out of sight, out of mind!

Read more
Jest tests for Netlify Functions
#Software engineering #Netlify #JavaScript
Posted on

Have you struggled to figure out a good way to test your Netlify Functions? As you start to make more use of functions, you really need to have good unit tests in place for peace of mind during production deploys.

Read more
Simple build step for Netlify Functions
#Software engineering #Netlify #JavaScript
Posted on

Netlify Functions are a fantastic way to extend the capabilities of a static site and enable you to easily build scalable and dynamic applications.

Read more