Visual Studio Code Setup

Windows

https://code.visualstudio.com/docs/setup/windows

Additional Components and Tools

https://code.visualstudio.com/docs/setup/additional-components

VS Code is a small download by design and only includes the minimum number of components shared across most development workflows.

Basic functionality like the editor, file management, window management, and preference settings are included.

A JavaScript/TypeScript language service and Node.js debugger are also part of the base install.

If you are used to working with larger, monolithic development tools (IDEs), you may be surprised that your scenarios aren‘t completely supported out of the box.

For example, there isn‘t a File > New Project dialog with pre-installed project templates.

Most VS Code users will need to install additional components depending on their specific needs.

Commonly Used Components

Here are a few commonly installed components:

  • Git - VS Code has built-in support for source code control using Git but requires Git to be installed separately.
  • Node.js (includes NPM) - A platform and runtime for building and running JavaScript applications.
  • TypeScript - The TypeScript compiler, tsc, for transpiling TypeScript to JavaScript.

You‘ll find the components above mentioned often in our documentation and walkthroughs.

VS Code Extensions

You can extend the VS Code editor itself through extensions.

The VS Code community has built hundreds of useful extension available on the VS Code Marketplace.

The extensions shown above are the current most popular on Marketplace.

Click on an extension tile above to read the description and reviews of the extension.

Additional Tools

Visual Studio Code integrates with existing tool chains.

We think the following tools will enhance your development experiences.

  • Yeoman - An application scaffolding tool, a command line version of File > New Project.
  • generator-aspnet - A Yeoman generator for scaffolding ASP.NET Core applications.
  • generator-hottowel - A Yeoman generator for quickly creating AngularJS applications.
  • Express - An application framework for Node.js applications using the Jade template engine.
  • Gulp - A streaming task runner system which integrates easily with VS Code tasks.
  • Mocha - A JavaScript test framework that runs on Node.js.
  • Bower - A client side package manager.

Note: Most of these tools require Node.js and the NPM package manager to install and use.

Next Steps

  • User Interface - A quick orientation around VS Code.
  • User/Workspace Settings - Learn how to configure VS Code to your preferences through settings.
  • Languages - VS Code supports many programming languages out-of-the-box as well as many more through community created extensions.
时间: 2024-08-24 01:52:11

Visual Studio Code Setup的相关文章

Visual Studio Create Setup project to deploy web application in IIS

Introduction: In this article I will explain how to create setup file in visual studio 2008/2010 to deploy web application file directly in IIS or in client machine or how to place web application folder in c:\\inetpub\wwwroot folder by running setup

微软Visual Studio Code 0.8.0发布,新增多种主题

微软在2015年4月30日,Build 开发者大会上,正式宣布了 Visual Studio Code 项目;并将其定义为:一个运行于 Mac OS X.Windows和 Linux 之上的,针对于编写现代 Web 和云应用的跨平台源代码编辑器. Visual Studio Code(图片来自:code.visualstudio) ??微软Visual Studio Code代码编辑器更新至0.8.0.本次更新增加了多种主题,包括著名的Monokai:针对WIndows系统采用基于Inno Se

windows下Visual Studio Code 1.9安装

点击送你去官网下载vs code 进入下载页面如下 下载完成双击安装 安装完成打开之后如下图,最新版的默认中文就挺好的! 注意下面是微软建议: Note: .NET Framework 4.5.2 is required for VS Code. If you are using Windows 7, please make sure .NET Framework 4.5.2 is installed. Tip: Setup will optionally add Visual Studio C

ubuntu 安装 VISUAL STUDIO CODE

1.下载VISUAL STUDIO CODE .DEB/.RPM 2. # For .deb sudo dpkg -i <file>.deb # For .rpm (Fedora 21 and below) sudo yum install <file>.rpm # For .rpm (Fedora 22 and above) sudo dnf install <file>.rpm 3.输入code 启动. https://code.visualstudio.com/d

Nodejs in Visual Studio Code 04.Swig模版

1.开始 设置Node_Global:npm config set prefix "C:\Program Files\nodejs" Express组件:npm install express -g(全局安装) Express-Generator:npm install express-generator -g(全局安装) 如果没有设置global可能导致express命令在cmd里面无法执行 我接触过3个模版jade,ejs,swig,最后选择了swig jade :是express

Salesforce 开发新工具 - Visual Studio Code

最近尝试使用Visual Studio Code来做Salesforce的开发工具,体验上比Sublime好用不少,介绍下详细步骤 第一步:下载对应版本的Visual Studio Code 下载地址:https://code.visualstudio.com/ 选择对应的版本选择下载,然后进入VS Code 安装界面 保持默认设置,一直选择下一步进行即可,安装完成后就能看到VS Code的操作界面 第二步:安装 Salesforce CLI 操作系统 安装地址 Mac OS https://s

在linux系统中安装VSCode(Visual Studio Code)

1.从官网下载压缩包(话说下载下来解压就直接可以运行了咧,都不需要make) 访问Visual Studio Code官网 https://code.visualstudio.com/docs?dv=linux64 我是64位的: wget https://az764295.vo.msecnd.net/stable/7ba55c5860b152d999dda59393ca3ebeb1b5c85f/code-stable-code_1.7.2-1479766213_amd64.tar.gz 2.解

安装GO语言环境之安装Visual Studio Code插件

在安装Visual Studio Code插件的时候,由于谷歌的限制,在下载下列插件的时候会报错: go get -u -v github.com/nsf/gocode go get -u -v github.com/rogpeppe/godef go get -u -v github.com/golang/lint/golint go get -u -v github.com/lukehoban/go-find-references go get -u -v github.com/lukeho

Visual Studio Code 中编写 C++ 的工作流

1. 官网下载 Visual Studio Code ,安装.按提示安装 cpp 插件和 cmake 插件. 官网下载 CMake ,安装. 官网下载 Mingw ,安装. 安装 Mingw 时,注意勾选 mingw32-automake, mingw32-base, mingw32-gcc, mingw32-gcc-g++, msys-base, mingw32-binutils, mingw32-gdb. 2. File->Open Folder 打开项目所在文件夹. 文件夹的目录应为 Pr