Best of Halodoc2022

  1. 1
    Article
    Avatar of halodocHalodoc·4y

    Git best practices

    Git is a software for tracking changes in any set of files. It is usually used for coordinating work among programmers collaboratively developing source code during software development. It helps us in the following ways. A clone of our production website can be easily created, which is known as branching. We can make our changes in local and deploy them for testing in another branch.

  2. 2
    Article
    Avatar of halodocHalodoc·4y

    How does a browser actually work

    A Web browser is actually a software application that runs on your Internet-connected computer. It allows you to view Web pages, as well as use other content and technologies such as video, graphics files, and digital certificates. In this article, I’d like to focus on the Process of How Does a Browser Actually Work.

  3. 3
    Article
    Avatar of halodocHalodoc·4y

    Automatically formatting and cleaning code on commit

    Every developer has their own coding style because they come from different backgrounds and institutions. To ensure everyone is on the same page about coding style and patterns, guidelines or rules are essential. Not every developer knows about the long-term code they build, especially when a deadline approaches and another task awaits.

  4. 4
    Article
    Avatar of halodocHalodoc·3y

    Code version best practices with clean commit formats

    The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history. It makes it easier to write automated tools such as semantic-release to add changelog and publish versions on top. Husky supports all Git hooks.