search
HomeDevelopment ToolsVSCode22 good VSCode plug-ins for web development (share)
22 good VSCode plug-ins for web development (share)Jul 26, 2021 am 11:13 AM
githubvscodeFront-end developmentplug-in

This article will share with you 22 good VSCode plug-ins in web development to help developers improve development efficiency. Let’s take a look!

22 good VSCode plug-ins for web development (share)

[Recommended study: "vscode tutorial"]

1. Debugger for chrome

https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome

22 good VSCode plug-ins for web development (share)

Trust me, debug JavaScript Don't just write console.log() (although this is the most common approach). Chrome has some built-in features for a better debugging experience. This plugin allows you to use all (or almost all) of these debugging features in VS Code.

If you want to know more, you can read:

Debugging JavaScript in Chrome and Visual Studio Code.

https://scotch.io/tutorials /debugging-javascript-in-google-chrome-and-visual-studio-code

2. Javascript (ES6) Code Snippets

https://scotch.io/tutorials/debugging-javascript-in-google-chrome-and-visual-studio-code

22 good VSCode plug-ins for web development (share)

## I like the Snippets plugin. I don't feel the need to type the same piece of code over and over again. This plugin provides you with popular (ES6) JavaScript code snippets.

Note... If you are not using the es6javascript features - use them quickly!

3. ESLint

https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

22 good VSCode plug-ins for web development (share)

Want to write better code? Does the entire team need to use a consistent format? Install ESLint. This plugin can be configured to automatically format code and "yell" with errors or warnings. VS Code, with the appropriate configuration, can show you these tips.

4. Live server

https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer

22 good VSCode plug-ins for web development (share)

Make changes in the code editor, switch to the browser, and refresh to see the changes. That’s an endless loop for developers, but what if the browser automatically refreshes when you make changes? This is where Live Server comes in!

It also runs your application on the local server. Some things can only be tested when the application is running on the server, so that's a plus.

5. Bracket Pair Colorizor

https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer

22 good VSCode plug-ins for web development (share)

Brackets are the scourge that prevents developers from staying alive. With lots of nested code, it's almost impossible to determine which brackets match each other. Bracket Pair Colorizor (as you might expect) matches bracket colors to make code more readable. Trust me, you want it!

6. Auto Rename Tag

https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag

22 good VSCode plug-ins for web development (share)

Need to rename elements in HTML? Well, with "Auto Rename Tag", you only need to rename the starting or ending tag, and the other tags will be renamed automatically. Simple but effective!

7. Quokka

##https://marketplace.visualstudio.com/items?itemName=WallabyJs.quokka-vscode

22 good VSCode plug-ins for web development (share)Need a quick place to test some JavaScript? I used to open the console in Chrome and type some code in it, but the drawbacks are many. Quokka provides you with a JavaScript (and TypeScript) scratchpad in VS Code. This means you can test a piece of code in your favorite editor!

8. Path Intellisense

https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense

22 good VSCode plug-ins for web development (share)In large projects, it can be troublesome to remember specific file names and the directories in which the files are located. This plugin will provide you with smart tips. When you start typing a path in quotes, you'll see smart prompts for directory and file names. This will save you from spending a lot of time browsing files :)

9. Project Manager

##https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager

22 good VSCode plug-ins for web development (share)

One thing I hate is switching between projects in VS Code. Every time I have to open file explorer and find the item on my computer. But this changes with the application of Project Manager. Using this plugin you can open an additional menu in the side menu of your project. You can quickly switch between projects, save favorites or automatically detect Git projects from the file system.

If you develop multiple different projects, this is a great way to stay organized and increase efficiency.

10. Editor Config

https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig

22 good VSCode plug-ins for web development (share)

Editor Config is a standard for a handful of coding styles supported in major text editors/IDEs. How it works is as follows. You save the configuration file in a repository supported by your editor. In this case, you have to add an extension to VS Code so that it respects these profiles. It’s super easy to set up and perfect for team projects.

11. Sublime Text Keymap

https://marketplace.visualstudio.com/items?itemName=ms-vscode.sublime-keybindings

22 good VSCode plug-ins for web development (share)

Are you an avid Sublime user and unwilling to switch to VS Code? This extension will make your switch seamless by changing all shortcuts to match Sublime's shortcuts. Now, what reasons would you have for not making the switch?

12. Browser Preview

https://marketplace.visualstudio.com/items?itemName=auchenberg.vscode-browser-preview

22 good VSCode plug-ins for web development (share)

I like the Live Server extension (mentioned above), but this one goes a step further in terms of convenience. It gives you a live reload preview inside VS Code. No need to look at your browser anymore to see small changes!

13. Git Lens

https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens

22 good VSCode plug-ins for web development (share)

There are a lot of git plug-ins, but one of them is the most powerful and has the most functions. You get information about warnings, line and file history, commit searches, and more. If you need help with your Git workflow, start with this plugin!

14. Polacode

https://marketplace.visualstudio.com/items?itemName=pnp.polacode

22 good VSCode plug-ins for web development (share)

You know those beautiful code screenshots you see on blogs and on Twitter? Well, most likely they come from Polacode. It's super easy to use. Copy a piece of code to your clipboard, open the extension, paste the code, and click Save Image!

15. Prettier

https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode

22 good VSCode plug-ins for web development (share)

Don't spend time formatting the code...it's done. Earlier, I mentioned ESLint, which provides formatting and inspection. If you don't need lint checking, then go for Prettier. It's very easy to set up and can be configured to automatically format code on save.

16. Better Comments

https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments

22 good VSCode plug-ins for web development (share)

This plugin colors various types of comments to give them different meanings and stand out from the rest of the code. I've been using this for tips. It's hard to ignore a big orange prompt telling me I have some unfinished work to do.

There are also color codes for questions, alerts and highlights. You can also add your own custom ones!

17. Git Link

https://marketplace.visualstudio.com/items?itemName=qezhu.gitlink

22 good VSCode plug-ins for web development (share)

If you want to see the files you are working on in Github, this plugin is for you. Once installed, just right-click on the file and you will see the option to open the file in Github. If you don't use the Git Lens plugin, this plugin is great for checking history, branch versions, etc.

18. VS Code Icons

https://marketplace.visualstudio.com/items?itemName=robertohuertasm.vscode-icons

22 good VSCode plug-ins for web development (share)

Did you know that you can customize the icons in VS Code? If you look at the settings, you'll see an option for "File Icon Theme." From there, you can choose from pre-installed icons or install an icon pack. This plugin gives you a really cute icon pack and is used by 11 million people!

19. Material Icon Theme

https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme

22 good VSCode plug-ins for web development (share)

Are you a fan of Google Material design? Well, check out this “Material Theme” icon pack. There are hundreds of different icons and they look great!

20. Settings Sync

https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync

22 good VSCode plug-ins for web development (share)

Developers (myself included) spend a lot of time customizing development environments, especially text editors. Using the "Settings Sync" plugin you can save settings in Github. They can then be loaded into any new version of VS Code using a single command.

21. Better Align

https://marketplace.visualstudio.com/items?itemName=wwm.better-align

22 good VSCode plug-ins for web development (share)

If you are the kind of person who likes perfect alignment in your code, then you need Better Align. You can align multiple variable declarations, trailing comments, code snippets, etc. There’s no better way to see how great this plugin is than to install it and give it a try!

22. VIM

https://marketplace.visualstudio.com/items?itemName=vscodevim.vim

22 good VSCode plug-ins for web development (share)

Are you an in-depth user of VIM? If so, congratulations, you can use all VIM tricks directly in VS Code. I'm not personally great at this, but I know how insanely productive it can be to use VIM to its potential, giving you so much more functionality.

Original address: https://scotch.io/bar-talk/22-best-visual-studio-code-extensions-for-web-development
Original author: James Quick

For more programming-related knowledge, please visit: Programming Video! !

The above is the detailed content of 22 good VSCode plug-ins for web development (share). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:知乎. If there is any infringement, please contact admin@php.cn delete
2023年将突出的一些前端开发趋势,学起来!2023年将突出的一些前端开发趋势,学起来!Mar 14, 2023 am 09:37 AM

前端开发趋势总是在不断发展,有些趋势会长期流行。本篇文章给大家总结了2023 年将突出的一些前端开发趋势,分享给大家~

如何使用PHP和Angular进行前端开发如何使用PHP和Angular进行前端开发May 11, 2023 pm 04:04 PM

随着互联网的飞速发展,前端开发技术也在不断改进和迭代。PHP和Angular是两种广泛应用于前端开发的技术。PHP是一种服务器端脚本语言,可以处理表单、生成动态页面和管理访问权限等任务。而Angular是一种JavaScript的框架,可以用于开发单页面应用和构建组件化的Web应用程序。本篇文章将介绍如何使用PHP和Angular进行前端开发,以及如何将它们

Flet:一个可跨平台的基于Flutter的Python框架Flet:一个可跨平台的基于Flutter的Python框架Apr 20, 2023 pm 05:46 PM

昨天刚发了一篇Python桌面开发库大全的微头条,就被同事安利了Flet这个库。这是一个非常新的库,今年6月份才发布的第一个版本,虽然很新,但是它背靠巨人-Flutter,可以让我们使用Python开发全平台软件,虽然目前还不支持全平台,但是根据作者的计划,Flutter支持的,它以后都会支持的,昨天简单学习了一下,真的非常棒,把它推荐给大家。后面我们可以用它做一系列东西。什么是FletFlet是一个框架,允许用你喜欢的语言构建交互式多用户Web,桌面和移动应用程序,而无需拥有前端开发的经验。主

学会利用sessionstorage,提高前端开发效率学会利用sessionstorage,提高前端开发效率Jan 13, 2024 am 11:56 AM

掌握sessionStorage的作用,提升前端开发效率,需要具体代码示例随着互联网的快速发展,前端开发领域也日新月异。在进行前端开发时,我们经常需要处理大量的数据,并将其存储在浏览器中以便后续使用。而sessionStorage就是一种非常重要的前端开发工具,可以为我们提供临时的本地存储解决方案,提高开发效率。本文将介绍sessionStorage的作用,

node.red是什么node.red是什么Nov 08, 2022 pm 03:53 PM

node.red指Node-RED,是一款基于流的低代码编程工具,用于以新颖有趣的方式将硬件设备,API和在线服务连接在一起;它提供了一个基于浏览器的编辑器,使得我们可以轻松地使用编辑面板中的各种节点将流连接在一起,只需单击即可将其部署到其运行时。

前端开发中的JavaScript异步请求与数据处理经验总结前端开发中的JavaScript异步请求与数据处理经验总结Nov 03, 2023 pm 01:16 PM

前端开发中的JavaScript异步请求与数据处理经验总结在前端开发中,JavaScript是一门非常重要的语言,它不仅可以实现页面的交互和动态效果,还可以通过异步请求获取和处理数据。在这篇文章中,我将总结一些在处理异步请求和数据时的经验和技巧。一、使用XMLHttpRequest对象进行异步请求XMLHttpRequest对象是JavaScript用于发送

Webman:提供强大的视觉效果和动画效果的前端开发框架Webman:提供强大的视觉效果和动画效果的前端开发框架Aug 13, 2023 pm 10:07 PM

Webman:提供强大的视觉效果和动画效果的前端开发框架前端开发在不断发展和进步的技术领域中扮演着重要的角色。随着互联网的普及和用户对用户体验的不断追求,前端开发需要更加强大且能够提供令人印象深刻的视觉效果和动画效果。Webman作为一种前端开发框架,致力于提供强大的视觉效果和动画效果,为开发者创造出独特而令人印象深刻的用户体验。Webman集成了丰富的前端

前端开发中的JavaScript路由与页面跳转经验总结前端开发中的JavaScript路由与页面跳转经验总结Nov 02, 2023 am 10:15 AM

前端开发中,JavaScript路由和页面跳转是必不可少的一部分。一个好的路由方案和页面跳转实现可以带来优秀的用户体验和页面性能。在本篇文章中,我们将从JavaScript路由的基础知识以及页面跳转的常见实现方式进行探讨,分享一些在实践中获得的经验和总结。一、JavaScript路由基础知识为了更好的理解什么是JavaScript路由,我们需要先了解下前端路

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.