DEV Community

Eftykhar Rahman
Eftykhar Rahman

Posted on

Become a Full Stack Web Developer | Practical Step by Step Frontend and Backend Guide

With countless job openings and promising new technologies, web development will continue growing in popularity absolutely everything is moving to the web.

Web 3.0 is connecting the web to the blockchain which is never been a more exciting time to dive into the beautiful world of web development.

When I was starting with web development, I wish that I could find an experienced developer who would tell me what they had to do to become a professional web developer. Unfortunately, I couldn’t find anyone. Now, I worked in the industry for many years and I want to share how I would learn web development If I was starting in 2022.

Starting with web development can be overwhelming, I know this Full-Stack Developer roadmap will guide you from bare beginnings to complete mastery. We will cover everything from the essential building blocks of the web to the most modern web development technologies so make sure to stick around even if you’re an experienced developer. By the end of this article, you’ll know precisely what you need to do to become an outstanding developer. Alongside this article, I’ve also prepared complete front-end and back-end developer roadmaps that cover absolutely everything. The guides will provide you with knowledge in step-by-step instructions and even include project ideas that you can build deploy and put in your portfolio to get a job.

You can download the ultimate guide and use it as a reference on your development journey whenever you’re unsure what to learn next. The link to these comprehensive guides is below the article and best of all it is completely free so make sure to scroll down and download the guides. After you download them, I would still strongly encourage you that you read this article until the end because although the guides are great as quick reference points. This article will provide you with absolutely everything you need to become a professional web developer.

Let’s start with the web developer roadmap. To start with your web development journey, you’ll need two things. The first one is a web browser either chrome or firefox that you most likely already have and the second one is a code editor. There are plenty of options to choose from. Still, the most popular one is Visual Studio Code. It’s free easy to use and has amazing plugins, excellent community support and it’s the most widely used editor. Other options are Sublime Text, Atom, and then of course my recommendation would be Visual Studio Code. That’s it to start your entire Web Development career. You only need these two tools. No expensive hardware or software is required. That’s amazing!

Now let’s dive into what you need to learn to become a web developer. The three main building blocks of the Web that you need to learn are HTML which provides the structure, CSS which provides the looks, and JavaScript which provides functionality.
Let’s start with HTML. The first thing you have to learn when starting web development. HTML is the fundamental technology used to define the structure of a web page. Learn the basics of HTML like syntax, different HTML tags, forms, learn about semantics, HTML SEO best practices. After you learn all of the basics of HTML.

That is where CSS comes to play. CSS stands for Cascading Style Sheets. It’s a way to style your HTML elements. It’s a stylesheet language used to describe a document’s presentation. For example, you use CSS to position things, to change the color, size, spacing of your elements. You can also animate stuff with CSS. So whenever you see some cool animations on a website that must be done using CSS. There is a lot to learn regarding CSS.

So let’s start with the basics. First of all, the CSS syntax, then you need to learn about CSS selectors; different ways to select HTML elements with class names, ids, tags names, etc. Then you need to learn how to position HTML elements across the page. Difference between relative, absolute, fixed, and sticky positions. Then you’ll need to learn about the CSS box model how paddings, margins, and borders on specific elements work. Another thing that you can learn about is CSS specificity. If two or more CSS rules point to the same element the selector with the highest specificity value will let’s say win and only its styles are going to be applied to that HTML element. Think of specificity as a score or a rank determining which styles are going to be applied to an element. Once you learn these basics, you should keep practicing your CSS skills by building small components like navigation bars and cards and of course style them to make them look better. You can learn and practice both HTML and CSS simultaneously. When you’re done with CSS basics, learn about more valuable and complex things like flexbox, grid, and responsive designs. Learn what pseudo-elements are, pseudo-classes, learn to create animations, transitions and more practice your skills by building landing pages and websites and making them responsive. It’s not a problem if you fail at first. Try again and you’ll succeed.

We’ve just gone through quite a lot of things and of course, this article is just an informational guide to provide you structure in your learning but we cannot cover absolutely how to learn everything in just this article. So again make sure to scroll down to the article and download the ultimate step-by-step guide so that you can reference to it later on. For example, I was talking about CSS specificity, box model, positioning elements, and selectors. All of that is going to be listed in the guide. So even after you’re done with this video you won’t be able to forget it . You’ll always be able to reference and learn one step at a time.

When you’re confident with HTML and CSS then it’s time to jump into learning JavaScript. JavaScript is the logical part or the brain of a web page. Learn the basic syntax, learn about manipulation, selecting elements, creating elements, and appending them. You’ll also want to learn about event listeners. Alongside learning JavaScript basics, you can also learn a popular CSS framework like Tailwind CSS, BootStrap, or Materialize. You don’t need to learn multiple CSS frameworks if you know one of them. You’ll get the hang of it. These CSS frameworks help you more easily create professional and consistent CSS designs without writing a lot of CSS on your own but of course, you first have to learn the basics of CSS to be able to fully understand what’s happening behind the scenes and speaking of CSS frameworks it’s also helpful to learn CSS pre-processors such as SASS or SCSS, A CSS preprocessor adds additional features that don’t exist in pure CSS such as mixin, nesting selectors, inheritance selectors and so much more. These features make your CSS structure more readable and easier to maintain. Once you’re comfortable in JavaScript basics, you can learn how to work with APIs and fetch data using the fetch API. This is where the fun begins. Fetching data from APIs is going to allow you to create so many different applications. You can create an application for anything you want to do. Do you like watching sports? Well fetch the Sports data from the Sports API and build an application around it. Do you like playing games? Take all the most popular game titles and create a table. Are you into movies? Well, create a movie library. You can do absolutely everything you’re passionate about. After that learn about asynchronous JavaScript, promises, async-await and similar. You can also dive into more complex topics like classes, string, array methods, scoping, hoisting, closures, ES6 plus features. There are a lot of new and complex things to learn at this point. You might start taking some javascript courses but many courses don’t teach you how to understand javascript fully and they don’t make you feel confident to code your real-world apps.

Once you’re comfortable with JavaScript basics and some more advanced things like asynchronous JavaScript, you might want to jump straight into a JavaScript framework or a library such as React or Angular. But don’t jump straight into them without understanding the topics I’ve mentioned in detail and I repeat do not go into JavaScript frameworks if you’re not fully comfortable with JavaScript basics. If you jump into frameworks too early, you won’t be able to differentiate what is syntax coming from the framework itself and what is just some basic JavaScript syntax. So take your time later in this article I’ll explain what you need to know before you start learning a Javascript framework.
Inmy opinion, you’ll learn the best while building projects. So to enhance your knowledge build some javascript projects such as a weather application that fetches weather from an external API. Build a notes application that uses local storage to save notes or a food recipe app that shows you recipes by search, a quiz application, and all of the similar projects.

By the way, if you want to have the ultimate JavaScript cheat sheet containing JavaScript basics string and array methods, math and date objects, the window object methods and so much more. You can get it completely for free again in the link down in the article. The link is going to say JavaScript cheat sheet and if you’re new to JavaScript I would strongly recommend you to save that as well just to have it on your PC if you need to reference it in the future.

At this time you’ll start building some projects and you need to consider learning version control system version control is essential because it allows you to keep track of your codebase. Version control software keeps track of every modification to the code in a special kind of database. Developers can turn back the clock and compare earlier versions if they make a mistake. There are many version control systems but the most popular and most widely used one is a git. In my opinion, you should consider learning git as it’s the best and only version control tool that most people use using. Git also becomes incredibly helpful when working with themes. The version control keeps tracking every individual change by each contributor and helps you from making conflicts if you’re working with teams. Alongside Git, you have to learn about GitHub. GitHub is a code hosting platform. It lets you and others work together on projects from anywhere in the world. Now, if you know all of the things I have mentioned so far, you’ll feel comfortable and create unique projects.

So the next thing you should learn is how to deploy your projects and websites. There are tons of free services that teach you how to deploy a static website such as Netlify, Vercel, and GitHub pages Congratulations if you know everything we’ve mentioned so far you are a FRONTEND DEVELOPER!

But there are still some important things that you can add to your repertoire. One of these tools is a package manager. Package managers are tools that automatically handle dependencies and plugins for you. For example, a package manager can install new or update existing packages with a single command because everything is automated and there is no chance for human error. The most popular package managers are npm and yarn. If you’re just starting you should consider learning npm. Npm is also an online database of mostly free packages called the npm registry. Think of it as a store of already created code where you can download codes written by others. But why would you use that can’t we code ourselves. Of course, we can but why ran went the wheel when it’s already been invented? Why solve a problem that has already been solved?

And finally, we’ve come to the middle of the article which maybe some of you have been waiting for Javascript frontend frameworks and libraries. Now that you know the fundamentals of the web. You can start learning frameworks but before learning any JS framework you should be confident with JavaScript because JavaScript is the main thing you’ll be working with. You must know the core fundamentals and advanced features of JavaScript, most importantly you must understand JavaScript ES6 plus features, array methods, some object tricks like property shorthand destructuring, spread operator, promises async await syntax, and import and export syntax. Once you know these things you can proceed.

So why would you even use a JavaScript framework? The frameworks are used to make building and working with programming languages easier. Frameworks typically take all the complex and repetitive tasks in setting up a new web application and they either do the boring stuff for you or make it very easy for you to do.

JavaScript frameworks allow you to build powerful single-page applications with organized and interactive user interfaces.
Javascript frameworks have many advantages over vanilla or plain JavaScript. Like code maintainability, you can make single-page applications incredibly quickly. It saves time in building an application from scratch and so much more.

There are many JavaScript frameworks and libraries available. But the most popular ones are React, Vue, and Angular. My recommendation of course is to learn React JS. Technically React JS is a library, not a framework. Library opposed to a framework simply provides you with a bit more freedom in how you want to get things done while frameworks have stricter code practices. React JS is a great library that is easy to understand and the most popular amongst all has excellent cross-platform support and an amazing community. It’s the most loved library out there. Vue and Angular are also great options to learn. Vue is a bit easier to understand compared to angular but once you know any of these JavaScript frameworks it will be easy for you to adapt to other ones.

Finally, you are ready to dive into React JS. When you first start learning React JS firstly, you need to know about the following things:

File structure; how everything works with React DOM and a single HTML div, react components, the difference between functional components and class components. Here’s a pro tip from now on you should always use function-based components rather than class-based components. They are old and nowadays functional components are most widely used. To be able to write react code you need to learn JSX syntax, props, state, events, and conditional rendering.
Once you know react basics, you should start learning about react.js hooks. The essential hooks are usestate, useeffect, useref, usecontext, usereducer, usememo, and usecallback and once you’re comfortable with all of these topics try building some cool projects. Alongside building projects learn a React UI kit. The most popular ones are Material UI and design and Chakra UI. UI frameworks allow you to import and use different components to create a user interface in your react applications. That’s incredibly useful because it allows you to focus on the logic of your projects while still having consistent and professional designs to make. The most out of react you’ll need to use some popular react packages as well the most popular ones are React Router DOM, Styled Components, and Axios. These are nothing more than simple npm packages we’ve discussed before.

Once you get familiar with React JS and start creating bigger projects you’ll naturally start doing everything with props that’s called props drilling. Are you sending props from a parent component to every other component in the application? We’ve all been there but soon you’ll notice that your apps get bigger and bigger and they also start getting a lot messier and a lot less organized prop drilling refers to sending props from a higher-level component to a lower-level component. So it would be best if you considered using a state management tool. The most popular one is Redux. State management is simply a way to improve communication and data sharing across your react components. State management libraries are used to pass the props to children components without prop drilling making your code a lot simpler and much easier to understand and now you are a proficient React Developer!

What should you learn next well? Conveniently, Next JS is a framework built on top of react.js which allows you to do many more things that are simply not available using react straight out of the box. But don’t worry! You don’t have to relearn everything because next.js is just a framework built on top of React. So all the knowledge from JavaScript, HTML, CSS, and React is still incredibly useful. You’ll just keep adding more to build better and better projects.

Another thing that you’ll find incredibly useful when working with massive projects or companies is testing there are some great libraries and frameworks out there that you can use to test your web applications. Here are a few of them Jest, Cypress, Enzyme, Jasmine, and Mocha.

Some other topics you can learn while learning react are PWA or Progressive Web Applications. These are applications that seem more like native mobile applications. They can work offline believe it or not and they can also receive notifications.
Then you can learn how to work with WebSockets. WebSockets will allow you to send data in real-time. This is great for applications that need to update something instantly or for things like messaging applications, social media networks, and streaming services.

Finally, about web accessibility I’ve mentioned so many things right now but here is a gentle reminder don’t get overwhelmed. You don’t have to learn all of these things at once. You don’t have to become a pro or a senior developer in days or weeks. It takes months and for some people years to become a great developer. So don’t get overwhelmed keep learning at your own pace and you’ll eventually become a GREAT DEVELOPER!

Backend is for people who are not that into visual things. For example, if you don’t have an eye for design and you wouldn’t like moving the elements around the page but rather you would want to implement the logic of what those elements do that is where the back-end comes in. To become a back-end developer firstly, you’ll need to know a programming language and you already know one JavaScript. So you can learn Node JS. Node JS is not a programming language nor a framework it’s a runtime environment for javascript which means that you can use javascript on the server-side.
If you don’t want to learn node.js. You can try some other programming languages like Python, PHP, Ruby, Java, and so on. There are plenty of options once you decide on your programming language. You can choose the framework according to that language for Node JS. You need to learn Express JS and like react as for the frontend, express is going to allow you to create better applications more quickly. If you want to find the frameworks for all other programming languages they are listed in the roadmap guide.

Before diving into other parts of the backend, you should at least know about these concepts you don’t have to implement them for now but you should know what they are and how they work and the concepts are HTTP or HTTPS, APIs, REST APIs versus GraphQL APIs, WebSockets, MVC architecture CI/CD and serverless. That’s quite a lot of new words that I’ve given you right now.

But one thing about being a great developer is that you need to learn how to google. So alongside the roadmap below, I would strongly suggest that you take each one of these things and copy then paste them into google and start your own research about them. Then create notes and actively learn what’s happening.
Now it’s time that you learn how to use a database. As the name suggests a database is a place where you store data. There are two types of databases. SQL and NoSQL. SQL stands for Structured Query Language. The popular SQL databases are MySQL, Postgres, and SQLite and the most popular NoSQL database is MongoDB. The MongoDB database is also a part of the most popular programming stack which is MERN MongoDB, Express.js, React, and Node.

These are all of the technologies that we’ve already mentioned so far but as you can see now we’re combining both the front end and the back end to create something exceptional by using these four technologies you can create absolutely any application that you can think of everything that exists in this world today. There are some more tools you’ll need when working with databases such as ODMS or ORMS which are object document mappings and you need those to interact with the databases more easily for MongoDB. The most popular ODM is Mongoose and I’ll just mention a few more essential things that you should learn authentication which allows your user to log in and register OAuth which is a simpler way of registration using some popular platforms like google login. Then you’ll need to learn about hashing or bcrypt which is going to allow you to encrypt your users' passwords so that they don’t get leaked out to public.

I know that I’ve mentioned quite a lot of stuff in this article and it’s impossible to get everything right now but just keep a list and start learning things one by one. Once you feel comfortable with one thing then you can move to the next one and that’s going to be it for this article. Let me know if you are or if you’d like to become a frontend developer or are you more into the backend. Again let me know down in the comments.

Thank you so much for coming to the end of this article. If you liked it feel free to give claps and if you like more of these articles let me know in the comment section down below, of course, follow me and that’s it. I'll catch you in the next article.

Don’t have a good day, have a wonderful life!

Top comments (0)