Best of VSCodeNovember 2022

  1. 1
    Article
    Avatar of pointerPointer·3y

    The State of Frontend in 2022

    The State of Frontend in 2022 analysis of 3,700 respondents from 125 countries. The 5 countries with the most responses were the US, Poland, UK, Germany and India. Only 18% of people filling out the survey said they work at non-tech-first companies.

  2. 2
    Article
    Avatar of tilThis is Learning·3y

    Resolving Merge Conflicts with Visual Studio Code

    Visual Studio Code recently introduced the three-way merge editor. This was supposed to replace the old inline editor. As soon as the new editor has been set as default, the community asked to get their old UI back.

  3. 3
    Article
    Avatar of thisdotThis Dot·3y

    VSCode Keyboard Proficiency

    The first command we will learn is the command to open the keyboard shortcuts editor. The main two cursor word movements are the cursorWordLeft and cursorWord. The cursorLineEnd and cursorLineStart commands do exactly that. They are bound to Ctrl+A and Ctrl+E, respectively. The most basic form of vertical movement is the cursor up and cursor down commands.

  4. 4
    Article
    Avatar of syncfusionSyncfusion·3y

    JavaScript Debugging with VS Code and Chrome

    JavaScript Debugging with VS Code and Chrome Debugging is a vital part of identifying why your application is misbehaving. This article will discuss how we can debug JavaScript using the simple and efficient tools in Visual Studio Code and Google Chrome. A list of breakpoints is always available in the right panel of Chrome DevTools. For example, JavaScript will throw an error in strict mode if we assign values to undeclared variables.

  5. 5
    Article
    Avatar of vscodeVisual Studio Code·3y

    VS Code Sandboxing

    VS Code Sandboxing Migrating VS Code to Process Sandboxing is a win-win for security and the VS Code architecture November 28, 2022 by Benjamin Pasero, @BenjaminPasero. Enabling the sandbox in Electron renderer processes is a critical requirement for secure and reliable Electron applications like Visual Studio Code.

  6. 6
    Article
    Avatar of devtoDEV·3y

    Tidy up your machine with Visual Studio Code Dev Containers

    The Visual Studio Code Dev Containers extension lets you use a Docker container as a full-featured development environment. It allows you to open any folder or repository inside a container and take advantage of Visual Studio code's full feature set. So far, after the startup, you're ready to develop inside the docker container with a fully configured environment.

  7. 7
    Article
    Avatar of tilThis is Learning·3y

    Working with Github from your best editor

    extension allows you to do whatever you want if you are working with a PR and Issues. This extension is an official extension created by the GitHub team. To create your first PR you have to click the icon in the top right of the PR section.

  8. 8
    Article
    Avatar of communityCommunity Picks·3y

    7 Tips for reverse engineering minified TypeScript/JavaScript

    MusicKitJS is a web service that creates playlists from the songs you listened to. MoovinGroovin is integrated with Spotify, and I got a request from a user to add support for Apple Music. The only public way to generate these is through method of Apple's MusicKitJS SDK.