42

Learn Web Development in 2019

 5 years ago
source link: https://www.tuicool.com/articles/hit/amUJRrB
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Learn Web Development in 2019

A guide to launching your career in web development in 2019. I list the required skills and top courses to learn frontend and backend software engineering.

Zn2uAbn.png!webUbQrUfN.png!web

Start a career in web development by learning to code online — no degree in computer science required

The demand for software engineers has exploded, and there are resources available enabling anyone to find a job as a developer. With the free and paid tutorials available online, you are able to learn to code regardless of your background — I personally don’t have a CS degree along with countless other devs that I have worked with.

This article is your roadmap to becoming a web developer in 2019. It outlines the best tutorials and top courses to provide a path to start a career as a frontend or backend engineer.

22iiYfF.png!web

Outline

This article is divided into 7 sections:

  1. Getting Started : Where to begin if you are brand new to coding
  2. General Coding & Tools : Programming concepts every dev should know
  3. Frontend Development : Learn how to build user interfaces (UI’s)
  4. Backend Development : Learn how to build API’s and write server code
  5. JavaScript and Coding In-depth : Learn JS from top to bottom
  6. Software Engineering Books : These are books I’ve found to be generally helpful in improving my overall understanding of programming and making a positive impact on the job. ( Find the full list here )
  7. Job Advice & Wrap Up : Some final quick tips on how to search for a job and continue your growth as a developer

If you are new programming or still learning the basics, you should begin with the “Getting Started” section to solidify core coding principles. The “General Coding & Tools” section contains content every developer should know such as Git, the command line, and essential tools.

Web development is typically divided into two disciplines — the frontend and the backend. The frontend is the UI that users interact with inside the web browser and is concerned with layout, styling, and managing data sent from the server —for the developers interested in the visual aspects and interactivity. The backend is focused on creating APIs and handling the complex logic of the application — for developers interested in data and pure logic.

I strongly recommend being at least comfortable with both the frontend and backend because having knowledge of the full stack is incredibly valuable and makes your skill set much more appealing. However, you can still find roles by knowing one piece of the stack very well.

These are all products that I personally recommend. For some of them, I do receive compensation if you use the links in the article. If you do find something you like, your support is appreciated.

UfeQfaZ.png!web

1. Getting Started with Coding

Your first encounter with programming

Knowing where to start can be the most intimidating part of programming. My recommendation — learn JavaScript.

  1. JavaScript is a relatively easy language to learn
  2. JavaScript is required to build web applications since it is the programming language that runs in the browser
  3. JavaScript can be used on the frontend and the backend, allowing you to write full-stack applications with a single language
  4. There are tons of jobs for JavaScript developers

If you know that you either only want to work with data or exclusively on the backend, learning Python is the other option that is good for beginners.

There are plenty of high-quality free options to get started with coding. freeCodeCamp and Codecademy are excellent choices and are great to set your foundation.

Once you have the basics down, a great next step is JavaScript30 . Wes Bos teaches JS by building 30 projects in 30 days for free.

You should try to do real projects as quickly as possible. This is the best way to learn and the most beneficial when looking for a job.

If you want to speed things up these are some great courses to go start from a beginner in JS and advance quickly.

Modern JavaScript From The Beginning

The Modern JavaScript Bootcamp (2019)

Advanced Javascript

If you are looking for a subscription option with courses that will take you from beginner to pro, a great option is Pluralsight . You must sign up for a subscription (free trial offered), but they have excellent content on almost everything.

qMzy2u2.png!web

2. General Coding and Tools

This section will focus on requirements for any developer. You should be proficient with the command line, know how to version control your code with Git, and the fundamentals of the web.

Command Line

The command line is how you run your code. You must be able to navigate and execute the required commands. The better you are on the command line, the more efficient you will be as a developer.

For Windows users, you are now able to run a true Linux terminal on your machine , so I highly recommend this approach because Unix (also used in Macs) is the most common environment you will use on the job.

Pick a Text Editor

VS Code is the is the top choice for web developers, which makes it a great place to start — it’s personally what I use. However, there are many excellent options available such as Atom , WebStorm , or Vim for the hardcore.

The text editor is where you will write all your code, and the terminal is where you execute it. As a developer, this is where live. Spend some time to pick the right editor, set up the plugins, and learn the hotkeys. Having the right workflow can dramatically increase your productivity.

Git and Version Control

Git is the tool used to save code and create different versions, allowing you to collaborate with other developers. The top place to store code and collaborate on open source software is GitHub.

Web Fundamentals (Learn these at some point)

FrmqyiU.png!web

3. Learn Frontend Development

JavaScript is the foundation of modern web development. The popular client-side libraries — React, Angular, and Vue — are all written in JavaScript. Knowing vanilla JavaScript thoroughly is essential to leveling up and having the required skills to build complex applications. Before diving too deep into JS, you should knowHTML andCSS. Even though the UI is coded in JS, it still generates HTML and is styled by CSS.

The Complete 2019 Web Development Bootcamp

The most complete course on web development. Start with HTML and CSS, learn JavaScript and how it interacts with the DOM, and eventually build a full stack web application.

The Web Developer Bootcamp

HTML & CSS

HTML and CSS are typically learned together. HTML is the skeleton of the page that gives is structure, and CSS is language that gives it style.

HTML and CSS for Absolute Beginners

Build Responsive Real World Websites with HTML5 and CSS3

CSS: The Complete Guide (Advanced CSS)

JavaScript

Since JavaScript is used in both the frontend and the backend, I included those resources in the “Getting Started” section as well. JS will be your main tool, so know it well and devote the time to learning it deeply.

Modern JavaScript From The Beginning

The Modern JavaScript Bootcamp (2019)

Advanced Javascript

UI Libraries (React, Vue, Angular)

Modern UI development has gravitated towards a component model with 3 libraries as the primary ones used on the job — React,Vue, andAngular. You are better off knowing one of them very well as opposed to trying to learn all 3. Then on the job, you will be able to pick up something different if the company uses a library that you did not learn. React is the most popular, but Vue and Angular are both being adopted rapidly.

React

Modern React with Redux (2019)

React 16.6 — The Complete Guide (incl. React Router & Redux)

React for Beginners

Advanced React + GraphQL

Vue

Vue JS 2 — The Complete Guide (incl. Vue Router & Vuex)

The Ultimate Vue JS 2 Developers Course

Vue JS Essentials with Vuex and Vue Router

Angular

Angular 7 — The Complete Guide

The Complete Angular Course: Beginner to Advanced

bIB3ye7.png!web

4. Learn Backend Development

The backend is where you talk to the database, handle business logic, and send the necessary data to the frontend.

Node

Node is how we execute JavaScript outside the browser which can be used to build APIs on the backend/server.

The Complete Node.js Developer Course (2nd Edition)

NodeJS — The Complete Guide (incl. MVC, REST APIs, GraphQL)

Learn Node

Python

Python is easy for beginners but also utilized extensively by tech giants and startups for backends, data science, and scripting.

Complete Python Bootcamp: Go from zero to hero in Python 3

Python and Django Full Stack Web Developer Bootcamp

Databases

The database is the permanent storage for the data of your application. Typically the backend will make a query against the database during an API call. There are 2 common database types — SQL and NoSQL.

GraphQL

GraphQL itself is not a database but a query language on top of databases. Many people believe it is going to revolutionize app development and totally change how we build APIs. It is rapidly gaining adoption and being utilized by tech giants and top startups.

MongoDB

Mongo is the most popular NoSQL database used with Node. It stores data in documents which are key / value pairs that easily map to JSON and JavaScript objects.

PostgreSQL / MySQL

These are two top SQL implementations and likely what you will see utilized at most companies.

Other Backend Options

Go (Golang)

Go is relatively new but has seen rapid adoption. It is a statically-typed language but is also incredibly developer-friendly. This makes it ideal for building services.

Ruby on Rails

Ruby on Rails was the go-to startup language for years. It’s ease of use and convention-driven language made it easy to rapidly build products.

PHP

Much of the early internet was built on PHP and there are still many sites powered by it, including Facebook.

Java

Java is used heavily by enterprise clients, so there are plenty of jobs available. For new beginners, it’s not the ideal language, but it could be a good option for software engineers coming from other areas.

imu6faY.png!web

5. JavaScript and Coding In-depth

I recommend working on real projects as quickly as possible. However, at some point, you will want to do a deep dive into JavaScript and learn how it all works underneath the hood. In addition, it is important to have an understanding of data structures, algorithms, and other general computer science knowledge.

You Don’t Know JavaScript (YDKJS) — This is simply the best book on JavaScript. If you work through this entirely, you will know the entire core language of JS. Read it free on GitHub or purchase physical or Kindle copies on Amazon .

TypeScript — This is not a requirement for beginners (unless you are using Angular), but TypeScript adoption is growing rapidly. Many think it’s the future of JavaScript.

Data Structures in JavaScript — Build the most common data structures from the ground up in JavaScript. This video series is a great extension to build the knowledge you have already gained and is an excellent resource for interviews as well.

Eloquent JavaScript — Another favorite book of JavaScript engineers. It covers a broader range of topics than YDKJS, including the browser and Node. Read it for free online or purchase a physical or Kindle copies on Amazon .

Introduction to Algorithms — While not the most beginner friendly book, it is thorough. Take this step once you really feel like it’s time to understand algorithms thoroughly.

Algorithms — This course is taught in Java, but the learning outcomes are still valid. You gain a thorough understanding of the most important algorithms in computer science. The course is taught by Princeton on Coursera.

nqm2Mj2.png!web

6. Software Engineering Books

This selection is 5 books that will either make you a better coder in general or an essential book you will need at some point in your career, such as during interviews. Or, see a complete list of programming book recommendations .

If you are learning to web development, there is also a high likelihood you’re interested in startups. These are some of the top books about startups and the philosophies of those that are successful.

7. Job Advice & Wrap Up

By following these tutorials, you will be on your way to becoming a professional web developer. Make sure to start building real projects as quickly as possible and begin applying to jobs. Projects and deployed web apps are the best way to show a company that you will be able to contribute once you are hired.

Finding the first job is always a numbers game, so the more you apply, the better your odds are of getting an offer. It can take months though, so be ready for the long road. However, you will get one eventually and every job going forward will be much easier to get after landing that first role.

Visit gitconnected.com/learn for more tutorials to learn to program .

Follow us on Twitter | Facebook |Medium to stay up to date!

If you found this helpful, tap the clap :clap: and share the article 


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK