Chapter 7 Developing your own Library

In your journey of developing software, you might face situations where you need to use the same functions you have developed for some previous project in your current project. At that point, what if these functions belong to different files?

This becomes an issue since you will have to include all those files every time you encounter the problem. In this chapter, I will show you how you can make this process more efficient by building your own Library and injecting all your functions into it. When you need to use those functions, you can just import the library!

Note

This part is inspired by Hridayesh Sharma's blog. He has a video on his blog if that’s easier for you to follow.