Difference between a front end Magento and a back end Magento ?

What is the difference between a front end Magento developer and a back end Magento developer?


Magento, both version 1 and version 2, provides very clean ways to separate frontend and backend work.

A backend developer is usually responsible for various tasks:

1. What is back-end web development? The back-end, or the "server-side", is basically how the site works, updates, and changes. This refers to everything the user can't see in the browser, like databases and servers 

2. Upgrading the core files when a new PATCH is available.

3. Installing and configuring new extensions to meet client needs.

4. Modifying the existing logic following Magento best practices.

5. Assisting frontend developer (creating classes, better structuring the data, expose easier methods).


A frontend developer would handle:


1. What is front-end development? The front-end is everything involved with what the user sees, including design and some languages like HTML and CSS . 

2. Changing the site’s look & feel (this is huge role as you have to deal with tons of css, javascript and phtml files).

3. Applying Javascript plugins.

4. Assisting backend developer (finding ways to use client browser to do more stuff than the server) .



=> Both jobs have to have a deep understanding of the Magento’s theme model, layout structure and how to work with .phtml files.


This Forntend  View :---

 


This Backend View :---




Thanks ...

Comments