DEV Community

Deepal Jayasekara
Deepal Jayasekara

Posted on • Originally published at blog.insiderattack.net on

4 Things You Should Know VSCode Can Do — Without Extensions

In my opinion, VSCode is the best thing ever happened to the IDE world. It’s super lightweight, feature-rich and free hence without a doubt the best IDE I have ever used in my opinion. The other biggest plus of VSCode is the community of extension developers who made our lives a whole lot easy. But today, I’m going to describe four of the most important things VSCode can do without extensions, which some developers even not know.

Feel free to read more about these in the official VSCode documentation, but first, let me point you to where to look.

Conditional Breakpoints

We use debug points all the time when debugging. But what if we can instruct the debug point only to hit once a given condition is met? These are called Conditional Breakpoints which are handy in especially when debugging inside loops, isolating specific scenarios and debugging edge-cases.

Debugging inside a loop with conditional breakpoints

Log points

It’s quite common to add console.log statements in the code to quickly check whether the application is behaving the way you expected. But the pain of this is that you have to make sure that you have removed every console.log you added for debugging before you commit.

Log point is a variant of a debug point which logs a provided message when the debug point is hit. You have access to all of the variables in the scope where log point is added, making Log points extremely valuable and cleaner alternative to good old console.log statements. The hassle of cleaning up adding console.logs and removing them is no more.

Adding log points with variables

Tasks

VSCode tasks are a great way to bring terminal commands into VS Code (e.g, starting-up dependencies using before debugging). This allows you to quickly run frequently used shell commands with a few keystrokes.

The additional benefit of tasks is that you can even configure a given task to run immediately before a debug session is started or run immediately after a debug session using preLaunchTask and postDebugTask properties in your launch.json debug config. This is extremely helpful to automate preparation commands/clean up commands when debugging. (e.g, Startup 3rd party dependencies in docker as preLaunchTask, and stopping dependencies once the debug session finishes as a postDebugTask).

User Inputs in Tasks and Launch Configurations

If we need to frequently change the arguments of a shell command in a VSCode task, we can define it as a VSCode input variable and provide it when the task is about to run. VSCode inputs can be used both in tasks as well as launch configurations which makes them extremely helpful.

I hope this might have helped you improve your productivity, and urged you to discover more of what VSCode can do as a FREE IDE.

Top comments (8)

Collapse
 
avikola profile image
Avishkar Kolahalu

Log points 🤯

Collapse
 
lucasrangit profile image
Lucas Rangit MAGASWERAN

Are these features JavaScript only?

Collapse
 
jsjlewis96 profile image
Jake Lewis

Don't know about the log points, but the others aren't

Collapse
 
deepal profile image
Deepal Jayasekara

Although I haven't tested, I'm quite sure that all of them can be used to develop with any language.

Collapse
 
daple profile image
Daniel Pleh

Logpoints came with a Release of Chrome (Devtools), which ist the Base of vscode. Not too Sure, but this might be for all languages working in the Browser.

Thread Thread
 
deepal profile image
Deepal Jayasekara

Thanks Daniel. Yeah, that makes sense. 🙂

Collapse
 
pantsme profile image
Antonio Savage

TIL! Thank you for these helpful nuggets. Learning programming currently and debugging is still somewhat of a new tool for me and I knew about none of these. Thank you again for this post.

Collapse
 
easa profile image
Eisa Nodehi

Good point, code is the best ide ever.