News

What's New in Visual Studio Code 1.22 (March Release)

Among the usual bevy of new features introduced on a monthly basis by the Visual Studio Code team is a new take on debugging breakpoints, called Logpoints. It comes in the March release, v1.22.

As the feature's name suggests, Logpoints uses logging to provide info about what's going on at a certain point in the code during the debugging of a project.

However, rather than stopping everything and "breaking" into the code to provide info as breakpoints do, Logpoints log the data to the console, especially useful when in investigating production code that can't be interrupted.

Logpoints allows you to monitor your code without stopping the process, Cloud Developer Advocate Brian Clark said in a video published last week (April 5). Think of it as everything you love about breakpoints without having to halt the execution of your application."

The March release, the VS Code team said, includes its first work toward this feature. A blog post explains "Logpoints are especially useful for injecting logging while debugging production servers which cannot be stopped."

The team explained that diamond-shaped icons mark Logpoints, which are sent as messages in plain text but which also can include expressions that can be evaluated within curly braces.

Other new features highlighted by Clark include:

  • Syntax aware code folding, which adds improved folding for CSS, HTML, JSON, and Markdown files. For those languages, Clark said, code folding "is no longer based on the indentation but on the syntactic structure."
  • Conversion to ES6 refactoring, via new Code Actions to convert to ES6 classes and modules. "Are you interested in using more modern JavaScript syntax but not sure how to get started?" Clark asked. "Well, VS Code is adding support to help out through a new feature called suggested Code Actions. These are visible through hints which can be seen as an ellipsis below parts of code that can be refactored. Hover your mouse over the ellipsis to see the full hint suggestion."
  • Auto attach to process, which automatically attaches the debugger to running Node.js processes. "As a Node developer you may prefer to start your application through the integrated terminal without a launch configuration," Clark said. "With the new auto attach feature, you can jump right into debugging your Node app after starting it."
For further details, here are Microsoft's descriptions and links to the other major updates:

To see what's coming up, consult the VS Code Roadmap 2018.

About the Author

David Ramel is an editor and writer at Converge 360.

comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube