Best of VSCode — August 2022
- 1
- 2
Medium·4y
The Ultimate Clean Architecture Template for TypeScript Projects
The Ultimate Clean Architecture Template for TypeScript Projects. A guide on creating a layer-based TypeScript project template following the principles of clean architecture. A Detailed Implementation Guide Create your project directories and root Configuring Core, Data, and DI Setting up the mono repo configuration.
- 3
- 4
freeCodeCamp·4y
Git Best Practices – How to Write Meaningful Commits, Effective Pull Requests, and Code Reviews
This article, we will explore how to write meaningful Git commit messages. How to get really good at the code review process and some best practices to follow. Use Imperative Commands Prefix your commit messages with imperative commands.
- 5
DevBlogs·4y
Python in Visual Studio Code – August 2022 Release
The August 2022 release of the Python and Jupyter extensions for Visual Studio Code are now available. The Python extension walkthrough has been improved to more easily guide users to installing Python when needed. A new Python Tools extension template allows you to create a VS Code extension for your favorite Python linter or formatter.
- 6
Visual Studio Code·4y
Introducing the Markdown Language Server
VS Code's Markdown Language Server will be launched August 16, 2022 by Matt Bierner, @MattBierner. Markdown is a language server for Markdown built using the language service. The language server is split between two new (and similarly named!) open source libraries.
- 7
- 8
DZone·4y
Debugging a Node js Express API in VS Code Debug
VS Code Debugger allows us to debug an Express-based API with the help of Visual Studio Code. Let’s do it on line 15, which should be the first line of our POST /users endpoint function. Then we re-send the request that led to an error with cURL and try to find out what happens. All seems to work as expected.