Home > Article > Development Tools > What is the difference between visual studio and vs code
Difference: visual studio is an integrated development environment with relatively complete functions; while vscode is a code editor. Visual Studio can only run on Windows and Mac; VSCode supports Windows, Mac and Linux across platforms.
Related recommendations: "vscode Basic Tutorial"
The difference between visual studio and vs code
Difference 1:
Visual Studio is an integrated development environment, which is relatively complete. It includes most of the tools needed in the entire software life cycle, such as UML tools, Code control tools, integrated development environments (IDEs), etc.
Visual Studio Code (vscode) is a free and open source modern lightweight code editor that supports syntax highlighting, intelligent code completion, custom hotkeys, and bracket matching for almost all mainstream development languages. , code snippets, code comparison Diff, GIT and other features, supports plug-in extensions, and is optimized for web development and cloud application development. The software supports Win, Mac and Linux across platforms.
Difference 2: Cross-platform running capabilities are different
Various functions of Visual Studio can only be run on Windows and macOS (Mac OS X), and cannot be edited across platforms.
VSCode is a truly cross-platform editor that can be used on the platform that users are accustomed to, instead of having to migrate to Windows.
Extended information:
VSCode has high customization capabilities and scalability. The following are some of the more popular plug-ins:
1. Settings Sync
After one computer is configured, there is no need to configure other computers. Just log in to the new machine and you're done. No more messing around with your environment, use GitHub Gist to synchronize settings, snippets, themes, file icons, launches, keybindings, workspaces, and extensions across multiple computers.
2. Debugger for Chrome
Debug JavaScript code running in Google Chrome from VS Code.
VS Code extension for debugging JavaScript code in Google Chrome or other targets that support the Chrome DevTools protocol.
3. beautify
Format code tool
Beautify javascript, JSON, CSS, Sass, and HTML in Visual Studio Code.
4. Atuo Rename Tag
Modify the html tag and automatically help you complete the synchronous modification of the head and tail closing tags
5. Chinese (Simplified) Language Pack
Chinese (Simplified) Language Pack for Visual Studio Code
Converts the interface to Chinese, which is very friendly to people who are not good at English.
6. Code Spell Checker
Code Spell Checker
A basic spell checker that works well with camelCase code.
The goal of this spell checker is to help catch common spelling errors while keeping the number of false positives low.
For more programming-related knowledge, please visit:
Programming LearningThe above is the detailed content of What is the difference between visual studio and vs code. For more information, please follow other related articles on the PHP Chinese website!