learning
|
20-08-2019
5 min read
Front-End Skills

What Front-End Developer Skills Should You Focus on Learning?

JavaScript and Front-End Engineering

We are in one of the fastest changing, evolving, most lively communities on earth.

JavaScript has evolved a ton from ES6 to new editions happening every year. Since the creation of Node.js, many companies have adopted JavaScript running their servers and APIs. And front-end web development changes and evolves as the tools, build processes and frameworks evolve – some of the newest things being Web Assembly and React Hooks – it's a blast to see what we can all build!

...so, what skills should we be focused on learning now in 2019?

I'll break this into three categories:

  • Begin Coding Now
  • Becoming a Professional Front-End Developer
  • Becoming a Well-Rounded Engineer

1. Begin Coding Now

I'll keep this short, because in the early days of your journey, the most important thing is to get a positive feedback loop going – changing something and seeing the effects of your changes as soon as possible!

Get Started: Scratch, HTML/CSS/JS or Python

I'm a believer that it doesn't matter what language or tool gets you started! ... whether it's Scratch, HTML, CSS & JavaScript, Python, or even a framework that gets you into programming...the main thing is to get that feedback loop going and start building your ideas to get excited about programming!

2. Becoming a Professional Front-End Developer

Mastering the Fundamentals of JavaScript

At Frontend Masters, we believe the deep, core fundamentals of JavaScript and programming paradigms are timeless. Putting effort into learning how the core mechanics of scope and closure, the prototype system, and type system pay off over and over again throughout your career.

Know Your Paradigm: Functional and Object Oriented Programming

JavaScript is a "multi-paradigm" programming language, so learning Object Oriented and Functional Programming paradigms will pay off in getting you to the next level. Object Oriented programming is a popular way to structure larger applications. Then add skills to your toolbox from functional programming such as using map, reduce, filter, pure functions and composition.

Ultimately, you'll want to learn when to use concepts from both Functional and Object Oriented paradigms.

React or Vue?

If you'd like to get going writing professional code quickly, the most straight-forward way is to dive into a framework like React or Vue, since most jobs require knowing one of these top frameworks deeply.

Many people will be upset if I didn't mention Angular, but I don't think it's the best framework to start on. You'll know when you have a big enough project to leverage its "battery's included" philosophy.

Developer Tools

It's also important to master your development tools to learn to debug your code and the performance of your application.

TypeScript

More and more companies are adopting TypeScript for better developer experience as well.

CSS Grid and Flexbox

Both CSS Grids & Flexbox are essential to layout modern, responsive websites that work on any device.

Webpack

Tools like Create React App and Parcel are making getting started easier and easier, but if you want to go deeper, learn Webpack to create a custom build pipelines to ship your code in an optimized way.

3. Becoming More Well-Rounded

Design Skills

Having basic design skills can make you a more desirable and well-rounded engineer.

Node.js & Full-Stack Deployment.

Learning Node.js and how to build APIs in Node can make you more of a full stack engineer.

Better yet, being able to set up and deploy your own apps makes you even more self-sufficient. AWS is currently the most popular platform to deploy apps at scale, but Azure is gaining steam.

SVG

One of the most flexible and underused graphics formats is SVG. It's incredible since it scales infinitely, from a mobile device to a billboard.

Testing

Want to make sure you're not shipping broken code? Leveraging testing with a popular test runner like Jest can go a long way in preventing broken deploys.

Git

Who hasn't lost code? Well, if you're a git master, you'll never lose your code and will be able to recover from when there are issues merging code. Everyone loves someone who really knows git on their team.

Computer Science

Knowing how to measure time complexity and use the correct algorithms and data structures can lead towards more efficient solutions and better engineering-thinking in general.

Newer Skills

  • Gatsby has been gaining a lot of steam for building performant websites.
  • Creative Coding is now possible in the browser with widespread Canvas and WebGL support for 3D in the browser!
  • GraphQL makes your APIs more flexible since you can grab exactly the data you need on the client, instead of breaking it up into multiple REST endpoints.

P.S.

This article originaly written by Marc Grabanski CEO of Frontend Masters.