Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

Lee Preslan
Lee Preslan
79 Points

Backend Web Development and Full Stack

I really dislike html and css. I dont care for that kind of work to be honest. I really want to be well rounded as a Full Stack dev but focus on Backend. Anyone have any thoughts on what I should do/learn/attack?

2 Answers

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,735 Points

I think being a well rounded full stack dev is a perfectly reasonable goal. What is it about HTML and CSS that you don't like? When I was starting out, there are some parts of HTML and CSS that I found very tedious and frustrating. A few bits of advice:

  • Use a modern text editor or IDE (Atom, VSCode, Webstorm, Sublime Text). You can get intellisense/code completion for css rules and html attributes. You can install plugins like emmet that let you generate html snippets very quickly.
  • Learn how to use the Chrome dev tools to inspect and debug your CSS and HTML
  • Use flexbox (I haven't had to deal with css float headaches in a while)
  • CSS frameworks like Bootstrap, Foundation, Material Design are great tools. They give you components that look good out of the box (especially if you're not a designer) and take care of a lot of the labor intensive work for you.
  • JavaScript frameworks like React (or Angular, or Vue) as also good tools to be familiar with. They help deal with lot of the common problems people run into trying to manipulate the DOM, and there's a huge ecosystem of great tools. Also, a lot of jobs will want you to know one of these frameworks.

If you want to focus more on the back-end this is what you should know (this is not an exclusive list of course):

  • Database administration: For this focus on learning a relational database like SQL and a non-relational database like MongoDB.
  • Server side or compiled language: (Python, Java, Ruby, PHP, Node.js)
  • Either server administration or cloud administration.
  • Web API's learn how to use existing ones, learn how to write your own.

My last bit of advice is, look at different full-stack development positions; find similarities between positions and focus on those skills.