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

Development Tools Console Foundations Getting Started with the Console Introduction

Vojislav Stupar
PLUS
Vojislav Stupar
Courses Plus Student 12,217 Points

I don't understand the usage of console. And why do I need to learn how is the console working.

I am on Front End course. I can see that you can use console only on Mac and Linux systems. I have Windows computer , but even I wouldn't understand why do I use console for.

5 Answers

The GUI is the Graphical User Interface. You cannot do everything through the GUI. Even if you do almost everything with the GUI, you will need to use the command line for some things.

Compiling Sass and using Compass are two things that come to mind that you need to use the command line for. Git is also much easier in the console than anything I have seen.

You do need the console in Windows to install some programming features. Many things can only be completed in the console. The reason why is based on the development of computers. In the late 70s and early 80s everything was command line as GUI was in its infancy. GUIs of all types really just take what you want to do and translate it into commands and Windows can still run in DOS through the console. If you are going to program, you need a basic understanding of the console even if you do not use it on a day to day basis n

Kevin Korte
Kevin Korte
28,148 Points

Ted's answer is exactly right, and if you're curious why a front end guy would need to learn the console, look at lessons here on Gulp or Grunt. These are things that can be run on windows, linux, or mac. There are also console emulators for windows with add ons that can give you the commands you'd expect from a mac or linux back.

Omh MG
Omh MG
19,233 Points

The GUI is we create and delete folders, has all the icons for different things all in a bunch of different windows, is that correct?

Kevin Korte
Kevin Korte
28,148 Points

Yeah, GUI is "graphic user interface". It's how your OS looks

Hassam Uddin
Hassam Uddin
8,204 Points

The windows has a console, its just used in batch commands rather than bash/unix commands, which is what this course teaches. I have a virtual machine running linux which I use for console only things.