Loading...

Backend Developer Roadmap 2021 | How to Become a Backend Developer

Backend Developer Roadmap 2021 | How to Become a Backend Developer

1) HTTP

HTTP stands for HyperText Transfer Protocol, a widely understood acronym, but do you know what this protocol is and why it is required. Think that you are only given a terminal with Curl or NetCat installed. Will you be able to send a raw HTTP Request without any help? It doesn’t mean that you have to memorize the format of an HTTP Request. It simply means whether you are capable of sending a request without any help.‌
‌You must have a semantic understanding of HTTP Object & its method, status code, headers & body of an HTTP Object. You should understand the different types of content types in the response headers. You should not only understand the syntax level, but you must also understand the technical level about what HTTP is.

2) REST

REST is another popular term among beginner devs that stands for Representational State Transfer, but it is essential to understand to perform HTTP requests better. While many people continue to use the terms REST and HTTP interchangeably, the truth is that they are two different things. REST refers to a set of attributes of a particular architectural style, while HTTP is a well-defined protocol that happens to exhibit many features of a RESTful system.

REST architecture states different status codes and using the correct method names. You should be familiar with the different types of HTTP Methods and their use cases. The most important HTTP methods are GET, POST, PUT & DELETE. Also, you should know about the JSON response from the server and how to handle it.‌

Similarly, you can also learn GraphQL. It is technically not an alternative to REST but has advantageous features over REST. While using GraphQL, you don’t need to care about the different HTTP Methods. Your focus will be on the Schema of the GraphQL Query.

3) Programming Language

The most important is to have a solid grip on a programming language that can run on a server. This does not include HTML as it is a Markup language and not a programming language. You can learn many languages here, namely, Node.JS (a runtime environment to run JavaScript in the server), Python, Rust, PHP & Golang. These are the most used languages for the back-end of your web application.

A solid understanding of programming languages is very necessary. This doesn’t mean learning how the loops, variables, functions works. This also includes creating HTTP requests & servers using the programming language and having good fundamentals in the networking (which is covered in the next point).

4) Networking & Linux Fundamentals

You need to have a good understanding of how networks work on any operating system level. You’ll primarily be working with the TCP, a 4th level protocol as per the OSI Model.


Understanding the basics of Linux Fundamentals is essential as when you are working with a server, you most probably won’t have interactive Graphical User Interfaces to handle the server. Therefore, it is very important to find your way around the terminal or command line, which is probably “bash” if you use Linux servers.‌
‌Also, networking is important at the Operating System level as it is sometimes essential to communicate and retrieve and insert data into a database which brings us to the following necessary things, Databases.

5) Database

Databases are very essential to maintain and organize the data generated by the users. This could be a SQL (Structured Query Language) or a NoSQL (Not Only Structured Query Language) database. Both have a lot in common, for example, indexing is a common concept in both kinds of databases.

The most common SQL databases would be Postgres or MySQL, and for NoSQL databases, it would be MongoDB or Cassandra or Redis.

6) Caching

Caching data is important because it helps speed up application performance and increase efficiency. It stores data locally, which means browsers and websites will load faster because access elements like homepage images have previously been downloaded.


The most common caching technologies that are used are Redis & Memcached. Another promising technology that helps you with caching is AWS ElastiCache, which brings us to our following topic, cloud providers.

7) Cloud Providers

When it comes to Cloud Providers, the most resonating names are Amazon Web Services, Google Cloud Platform, and Microsoft Azure, among others like Digital Ocean.

You have to pick any one of the cloud providers and get into their ecosystem and understand their embedded features for explicable use. Most of them also provide some free credits for you to use their cloud service. Cloud provides increased amounts of storage and processing power to run the applications & it’s easy to access information, process and analyze data, and connect people and resources from any location anywhere in the world. So it’s vital to have some fundamental understanding of any cloud provider.

8) Web Security

Anyone can code but is your code secure enough that it’s not vulnerable, and the data you are capturing is safe, probably!. So it’s very, very important to understand web security before developing scalable applications.

You probably don’t want your database to be corrupted or just got cloned and getting dumped by the hacker. Any back-end developer can make and manage servers, but a good back-end engineer can write secure code that keeps the collected data and the users’ privacy safe. More about web security can be read here.

9) Containerization & Testing

Containerization and Testing are optional technologies for you to learn as a beginner. As a beginner, you can choose Docker to learn Containerization. You can also prefer Kubernetes but it is overkill. For testing, you can use Jest for your back-end testing and Postman for your API testing.

You can watch the YouTube video here.

Sharing is caring

Did you like what Mehul Mohan wrote? Thank them for their work by sharing it on social media.

0/10000

No comments so far