software development

Top 10 Software Development Companies in Minneapolis

Keyhole Software Articles, Keyhole Leave a Comment

Attention: This article was published over 2 years ago, and the information provided may be aged or outdated. While some topics are evergreen, technology moves fast, so please keep that in mind as you read the post.In Minneapolis, there are ten software development companies that standout: Keyhole Software, THE NERDERY LLC, Emergent Software, Bitwise IO, Improving Company, MentorMate, Coherent Solutions, …

Front-End Frameworks for Enterprise Applications: What Are Your Options?

Keyhole Software Keyhole, Videos Leave a Comment

Attention: This article was published over 2 years ago, and the information provided may be aged or outdated. While some topics are evergreen, technology moves fast, so please keep that in mind as you read the post.Selecting the appropriate front-end framework for enterprise applications is a critical decision that impacts not only the development process but also the success and …

What is Cross-Platform Mobile Development?

Keyhole Software Flutter, Keyhole, Mobile, React Native, Videos, Xamarin 2 Comments

Attention: This article was published over 3 years ago, and the information provided may be aged or outdated. While some topics are evergreen, technology moves fast, so please keep that in mind as you read the post.Mobile application developers constantly seek innovative methods to craft apps that resonate across diverse platforms. This quest has given rise to cross-platform mobile development, …

[.NET & JS] Sr. Consultant Contributions at Healthcare Client

Lauren Fournier Bogner .NET, Azure, Healthcare, JavaScript, Microservices, Mobile, React-Native

The project is undertaken for a prominent healthcare system situated on the East Coast of the United States. Keyhole Software has been a trusted consultancy for this organization since 2013, contributing expertise and resources to various departments within the system. The project experience detailed here spans the period from 2020 to 2024 and is representative of the valuable contributions made …

JavaScript Monorepos in 2024: Legit or Sus?

JavaScript Monorepos in 2024: Legit or Sus?

Zach Gardner Articles, Development Technologies & Tools, JavaScript, Programming, Tutorial 4 Comments

I’ve been developing JavaScript through all of the major existential changes we’ve had. Browser wars? I remember those. Trying to make a complex application before Firebug? Oh yeah, tell me about it. Having to roll my own AJAX request by hand? Vividly remember.

Something that I experienced in all of my large JS projects before the last few years was an eventual point of no return, a metaphorical event horizon, beyond which the amount of time it took to build the code locally as well as on the CI/CD system was just simply too long.

All projects start fine, but as they grow and evolve and change over time, the amount of build time seems to creep up until it becomes inimical to deploying and testing changes in any reasonable time frame. Further, it becomes very difficult to onboard new developers as any change they make is not isolated, and must take into account all of the other code in the app. Granted, frameworks and libraries like React do help to some extent, but there are no clean-cut boundaries on the source code with different features, it always had to be by convention.

It was during a project a few years ago that I finally put my foot down and decided that something needed to be done. Researching how other architects were doing it, I came across JavaScript monorepos. I was familiar with the concept of monorepos from my research on how Google structures their code base (they have two repos, one for YouTube and one for everything else, no joke), but had never thought to apply that same principle to JavaScript. So I dove in head first, made a lot of mistakes, iterated, and finally got to a place where I feel comfortable sharing my lessons learned.

This blog post is not an extensive study, but it is enough to get you interested in a way to solve two common problems we all have (i.e. sluggish build times and inability to effectively onboard new devs due to lack of feature separation), and give you enough of a context around how I approached the problem to determine how you should proceed.