...

/

Efficient Software Development with Jenkins X

Efficient Software Development with Jenkins X

This lesson lists the commonly faced problems in software development that can waste a lot of time and resources. It also states that many of these issues can be solved using Jenkins X.

What are the common problems in software development?

Software development is hard. It takes years to become a proficient developer, and the tech and the processes change so often. What was effective yesterday, is not necessarily effective today.

Multiple languages and frameworks

The number of languages we code in is increasing. While in the past, most developers would work in the same language throughout their whole career, today it is not uncommon for a developer to work on multiple projects written in different languages. We might work on a new project and code in Go while maintaining some other project written in Java. To be efficient, we need to install compilers, helper libraries, and quite a few other things.

Managing dependencies

No matter whether we write all the code in a single language or not, ...