Jun 11 '20
< all postsReading Time: 3 mins
Dear Developer, Today I decided to talk to you about one of the best code editors out there. Truly efficient Development always starts with the code editor. Of course you can probably develop a full CRUD app in notepad, but it's much easier when you have the correct tools for doing so. Having tools that are well equipped just makes the whole experience, as enjoyable as development should be - minus the errors and stress around that.
The code editor I use is called Visual Studio Code . It is an editor made by Microsoft; it contains built-in debugging tools, Git and a built-in Terminal! VS Code also has hundreds of themes to choose from. The one I use is called "Community Material Theme High Contrast". This gives you a beautiful dark mode editor with enough contrast between the terminal and the screen. They also have Icon packs for the files; again I think "Material Icon Theme" is an awesome option. Visual Studio Code also allows you to install extensions; which help with development efficiency. Here are some of the extensions I use on a day to day basis in web development.
npm start
from create-react-app.This is why VS Code is one of the best code editors for web development. Projects would take me absolutely ages without Emmet and the other extensions, however if you are just starting out I recommend writing it yourself, so you get use to syntax. Not only extensions, but it also has lots of keyboard shortcuts to make your life as a dev much easier.
Along with Web Development I use VS Code for Python programming - unless I'm using the default IDLE which comes with python 😂. For Python development in VS Code, they have the python extension - This just show that the VS Code Devs had Web Development in mind. Useful python extensions include: AREPL which is almost like a silent debugging tool and Python-autopep8 which like Prettier needs the "format on save setting" enabled. It formats your python code to abide by the PEP-8 code standards for Python.
The Devs over at Microsoft have spent a lot of time perfecting their code editor, to make it as useful to developers worldwide. Not only that but they also allow you to type code .
into a command prompt within a directory to automatically open a VS Code window.
Thank you for taking the time to read.
✨If you would like to follow my day to day development journey be sure to check my Instagram.