DEV Community

Cover image for roadmap for front-end development
Souvik Mandal
Souvik Mandal

Posted on

roadmap for front-end development

There are plenty roadmaps for web developers out there. But some of them make you solve a "puzzle" before even getting started, as there are a lot of choices that you can do.

When I started to learn Web Dev, I wished that I could find a promising and easy to learn road map to learn. But I got lost in the crowd of these different roadmaps.

I will also be talking about some example projects that you can build to practice your skills and do show off to be an intern.

Tools You Need to Know to Become a Web Developer

I'm assuming that you are a beginner. In that case, there are a few tools that you need to know before getting into programming especially web development.

VS Code (or other code editor)

First, you should learn how to use Visual Studio Code, which is a source code editor. It is a free and powerful tool. Well, I've some beginner aka web developer uses sublime text. That's also good but I'm not so usual with sublime text, as VScode has rich features for software development.

In the beginning, I recommend learning some of the basic shortcuts and installing some of the extensions like ESlint, Prettier, Live Share, Material Icon Theme, or Live Server.

The Command Line

Next, you need to know about the Command-Line interface. You should learn what it is, and some of the basic commands like how to move around directories, how to create a new directory, or how to create a new file.

Version Control - Git and GitHub

No matter what you do, as a developer, you need to know about Git. Git is a Version Control system used for tracking changes. It is usually used with GitHub, which is a code hosting platform.
Well there is many hosting platform e.g. Big Bucket but github is popular.

In the beginning, learning Git might be overwhelming, therefore you just need to know some of the basics like to create a new Repository, to clone a project, to make a new commit, and how to pull and push the new changes. You can take guidance under any good youtube channel and put down commands in note book, atleast I learned in this process.

One of the best ways to practice Git is by working in a team. There, you need to know how to create a new branch, how to make pull requests, and how to resolve conflicts. You can create your own community in school or college for WebDev. This helps a lot!

Design tools - Figma

The last tool is Figma. Figma is a design tool and is free to use for individuals. But here I want to talk about how to use Figma as a developer.

Alright, so these are the tools that you need to know of when getting started. You don't need to know everything, but be sure that you understand the basics so that you can improve while learning to code.

rough idea for roadmap

HTML and CSS

Next, let's continue with programming languages. And let's start off by talking about Responsive Websites.

Responsive websites are sites that look good and are usable on all devices or screen sizes. You probably know how important it is to build a responsive website, as people use so many different devices these days.

So let's jump to the first two languages that you need to know to build a website: HTML and CSS.

HTML stands for Hypertext Markup Language. It it is used to build the skeleton for your website. HTML is not difficult to learn, but you might want to pay more attention to HTML forms as they will be fundamental in the future.

CSS stands for Cascading Style Sheets. This is a markup language but I also consider it to be a programming language. CSS is not necessarily difficult to learn but it's difficult to master.

There are few topics that you want to pay more attention to like:

Box model - how margins, padding, and borders work together.
CSS units - used for expressing lengths (e.g: rem, vh, and vw).
Position - specifies the type of positioning method. It also confuses many people so make sure you spend some time on it.
Variables - or Custom properties are entities that can be reused throughout a document. This is my favorite feature in CSS. They make working with CSS so enjoyable and you can create themes with just a few lines of code.
Media query - decides what to show on different screen sizes. They are a key component of responsive design.
Animation - lets an element change from one style to another. If you know how to use animation correctly, it makes your site stand out. Otherwise, it will make your website look unprofessional, so be careful.
Flexbox, CSS Grid - used for building Responsive layouts (I forgot to mention this in the video).

When you know the basics of HTML and CSS, the next step is to build some basic websites. For example, you can try a Homepage, a Form like a login page or a checkout page. You can even build a basic Portfolio. You can find example projects on DevChallenges.io.
But you can create small snippets before that like newsletter, profile card, login card, carousal etc.

Website deployment

Once you have your website, you need to put it on the internet, so people can see it. Deployment is the process of deploying your code to a hosting platform.

Back in the day it was a lot more difficult to do. But now, it's super easy and you can use tools like GitHub Pages, Netlify, or Vercel.

JavaScript - Fundamentals

Alright, the next topic is JavaScript. JavaScript is a popular programming language and is widely used for Web Development, among other things.

You will need to learn some of the basic features of the language like Data Types, Loops, and Conditionals.

Then there are topics that you will want to dive deeper into.

First, we have debugging. This is the process of finding and fixing errors. Here's a great in-depth guide to bug squashing to get you started.

Then there are other topics like Objects, Primitives, and Arrays. Especially when working with Arrays, you need to know about Array methods as well.

Functions are the main building blocks in your program. So make sure that you don't overlook them.

One of my favorite features in JavaScript is de-structuring – it is easy to write and makes the language super powerful.

And no matter how good you are with programming, you will have errors in your scripts. This means you'll want to know about Error handling as well.

Asynchronous programming is important, especially when you need to communicate with the server. So spend some time learning about Promises and Async/Await.

JavaScript - Browser

Let's move on to how JavaScript is used in the browser.

First, you need to know what a Document Object Model or DOM is. Then you need to know how to get elements, how to change the classes, or how to change the style with JavaScript.

After that you have to introduced with JS DOM (Document Object Model)

You also need to learn about different User Interface Events like click, mouse over, mouse down, and so on.

And, you'll also want to pay more attention to Forms in JavaScript as they have many events and properties

JavaScript - Other features

The Fetch API is an important topic. It lets you send network requests to servers. This is useful, for example, when we need to submit a form or get a user's information.

Another important topic is Storing Data in the browser. Here you need to know what the differences are between Cookies, LocalStorage, and sessionStorage.

Other less important topics when you are just getting started are Regular expressions, Web Components, and Websockets.

Regular expressions are used to search and replace text. Web Components, are a new thing but you should totally check them out.

Lastly, we have Websockets. They are useful when you need to have continuous data exchanges like in chat applications.

So after learning Javascript, you might want to spend some time to learn about TypeScript. I love TypeScript as it gives me a safe feeling while writing code.

TypeScript provides static typing, that allows you to catch errors earlier in the debugging process. It also saves your time as it finds bugs before the code runs.

Here's a helpful post on TypeScript types to help you think about them the right way.

You can stop here and start working on some projects. But personally, I would continue by learning at least one framework. Then you can practice JavaScript at the same time.

Top comments (5)

Collapse
 
it718 profile image
IT Solutionist, Specialist

I have a road map of front-end development. Everyone can check this URL.
https://roadmap.sh/frontend
I hope this will be helpful for you and someone.
Thanks

Collapse
 
8bitsouvik profile image
Souvik Mandal • Edited

Yes, That's also helpful. Everything in a single image! Thanks for sharing 👍🏼

Collapse
 
it718 profile image
IT Solutionist, Specialist

Thanks for your posting. I already knew about them but your posting will be useful for begineers.

Collapse
 
sm0011932 profile image
Shivam Mishra

also, State management solutions
Redux toolkit and rtk query
React query with context API

Collapse
 
8bitsouvik profile image
Souvik Mandal

Yeah, but you know this roadmap is for absolute beginners. So, I didn't think to elaborate much on any specific framework or library.. That's why not included