What Does a Backend Engineer ACTUALLY Do?

Search for a command to run...

Actually it is hard than it looks ahaha thank you maddy but i think i start to like backend needs lot of works but i like it
Code refactoring is a crucial process in software development that involves improving code quality without altering its functionality. By restructuring and redesigning code, developers can improve its readability, maintainability, and performance. In...
AI has transformed how I work as a technical writer. Large tech companies are developing and sharpening these tools, but some of them are better than others depending on what you want to accomplish. T

I've been writing professionally for 3+ years, and on this personal blog for 5+ years. Throughout this time, I've built a large network made of developers, other technical writers, solutions engineers

I’ve been writing online for almost five years, with a professional focus on technical writing for over two years. If you struggle to create technical content that is easy to digest, this article is for you. Where do I start? If you don’t know where ...

LinkedIn is the only social networking site purposely built to help job seekers. Over the years, LinkedIn has evolved by offering two types of experiences: Job searching Content creation This article will describe how to maximize your LinkedIn fo...

In the last 12+ months as a technical writer, I've worked on several projects highlighting three technical writing elements. This article will introduce you to: Information Architecture Docs-as-code Content strategy Information Architecture (IA)...

Regarding software engineering, it's challenging to imagine what a backend engineer does daily. As a backend engineer, I get this question often: "What do you do"? 😁
This article will address this subject.
A backend engineer is the type of engineer responsible for creating the skeleton of a software application.
Backend engineering is also known as server-side engineering because backend engineers deal with everything that happens on the server.
Backend engineering is not client-facing. The user doesn't see or interact with a software application's backend.
Related: Client-Server Architecture Made Easy (With Examples)
I've grouped the duties of a backend engineer into five primary responsibilities:
Software logic.
API design and development.
Database management.
Third-party services.
Infrastructure operations.
Backend engineers deal with business and infrastructure logic.
Business logic is the logic defined by the business.
To create a new feature (or modify an existing one), a backend engineer is responsible for ensuring that the code follows and implements the component's business rules.
Business logic usually involves validation and flow.
The following example explains it well:
In one application, the business folks will say this is a business rule, and so you write code to enforce this business logic (validation). Another application will say that if the number of items ordered is greater than the number of items in stock, to accept the order and then to place your own order for the difference plus 20%, and so you will write this business logic (flow).
Infrastructure logic describes how the software application operates. Classes that contain infrastructure logic define what you need to make the code work. For example, if you get an XYZ HTTP response, then do XYZ.
API design and development are some of the core activities of a backend engineer.
Backend engineers work in close contact with frontend engineers and UX designers.
Backend engineers must be thoughtful about the endpoints to expose, what endpoints will return, etc.
API development means writing, testing and maintaining the code behind an API.
Backend engineers spend time curating and interacting with the database.
Database management can involve deciding and creating the entities to store in the database, generating new tables or modifying the existing ones by adding or removing new columns, modifying the constraints, etc.
A software application has many moving pieces. It's not just a language with a framework.
Nowadays, software applications are connected to third-party services such as Amazon Web Services, Stripe, Google Pay, etc.
Backend engineers interact with those services and also embed them in software applications.
Backend engineers also deal with infrastructure work.
They are responsible for the performance, optimization and security of an organization's software application.
Infrastructure work can involve dealing with monitoring/alerting services to track an application's performance. New Relic is an example of a monitoring service.
Server-side languages: Java, PHP, JavaScript, Python, etc.
Backend frameworks: Spring, Django, Flask, etc.
Databases: MySQL, PostgreSQL, MongoDB, etc.
Version Control: Git, BitBucket, etc.
Web services: REST and SOAP.
Cloud computing: Amazon Web Services, Google Cloud Platform, Azure.
An awareness of security, performance, scalability and maintainability.
I hope you've now understood what a backend engineer does. It is more abstract than frontend engineering but essential to ensure the smooth running of a software application.
Are you a backend engineer? Do you agree with the five points described above? Let me know in the comments.
Until next time! 👋🏾
ADDITIONAL RESOURCES: