DEV Community

Cover image for The essentials
ArtXandro
ArtXandro

Posted on

The essentials

What are the essential applications that you use daily in your projects or jobs?

Top comments (5)

Collapse
 
andrewbaisden profile image
Andrew Baisden
  • Visual Studio Code
  • Microsoft Outlook
  • Microsoft Teams
  • Docker
  • Google Chrome
Collapse
 
artxandro profile image
ArtXandro

I did not know the doquer application, what is it used for?

Collapse
 
andrewbaisden profile image
Andrew Baisden

Docker is an open source containerization platform. It enables developers to package applications into containersβ€”standardized executable components combining application source code with the operating system (OS) libraries and dependencies required to run that code in any environment.

Basically you can put your application inside of a Docker container and it will run exactly the same way on other peoples computers. So for example you have a React application and you put it inside of a Docker container. And then you can use the Docker application to run that React application inside of the Docker container.

Collapse
 
artxandro profile image
ArtXandro

how interesting, thanks for your answer

Collapse
 
andrewbaisden profile image
Andrew Baisden

Sure no problem.