Skip to content

Commit 8a2465f

Browse files
committed
chore: remove mention of the chrome debugger
1 parent 159bf52 commit 8a2465f

File tree

5 files changed

+14
-24
lines changed

5 files changed

+14
-24
lines changed

Angular-SpaTemplates/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
by [John Pankowicz](https://github.com/johnpankowicz)
44

5-
This recipe shows how to use both the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension and the [C# for Visual Studio Code](https://github.com/OmniSharp/omnisharp-vscode) extension together to debug a C#/Typescript application generated by the [Angular AspNetCore.SpaTemplates](https://www.nuget.org/packages/Microsoft.AspNetCore.SpaTemplates/).
5+
This recipe shows how to use both the built-in JavaScript debugger and the [C# for Visual Studio Code](https://github.com/OmniSharp/omnisharp-vscode) extension together to debug a C#/Typescript application generated by the [Angular AspNetCore.SpaTemplates](https://www.nuget.org/packages/Microsoft.AspNetCore.SpaTemplates/).
66

77
## Prerequisites to install
88

99
- [Google Chrome](https://www.google.com/chrome) installed in its default location.
1010

11-
- Version **3.5.0** or greater of the [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) extension installed in VS Code.
12-
1311
- Version **1.13.1** of the [C# for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) extension installed in VS Code.
1412

1513
- .NET Core SDK 1.0 RC4 (or later) for Windows, Mac, or Linux

Electron/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,17 @@
22

33
By [Kenneth Auchenberg](https://twitter.com/auchenberg)
44

5-
This recipe shows how to use the built-in Node Debugger and the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension with VS Code to debug [Electron](https://electron.atom.io) applications.
5+
This recipe shows how to use the built-in JavaScript deubgger in VS Code to debug [Electron](https://electron.atom.io) applications.
66

7-
[Electron](https://electron.atom.io) applications can consist of two process types: a main process type running in NodeJS, and a renderer process type in Chromium. This means that you'll need to use two debugger instances within VS Code to debug both processes. This is the reason you'll need both the built-in Node Debugger and the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension.
7+
[Electron](https://electron.atom.io) applications can consist of two process types: a main process type running in NodeJS, and a renderer process type in Chromium. This means that you'll need to use two debugger instances within VS Code to debug both processes.
88

99
**Note:** Please make sure you are using **Electron 1.7.4 or newer**, as our debuggers rely on the inspector protocol.
1010

1111
## Getting Started
1212

1313
1. Make sure you're running the latest version of VS Code.
1414

15-
2. Also make sure the latest version of the [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) extension is installed in VS Code.
16-
17-
3. This guide assumes that you are using the [electron-quick-start project](https://github.com/electron/electron-quick-start). Clone the repo to get started:
15+
2. This guide assumes that you are using the [electron-quick-start project](https://github.com/electron/electron-quick-start). Clone the repo to get started:
1816
>
1917
```
2018
git clone https://github.com/electron/electron-quick-start.git

Next-js/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,17 @@
22

33
By [Kenneth Auchenberg](https://twitter.com/auchenberg)
44

5-
This recipe shows how to use the built-in Node Debugger and the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension with VS Code to debug [next.js](https://github.com/zeit/next.js) applications.
5+
This recipe shows how to use the built-in JavaScript deubgger in VS Code to debug [next.js](https://github.com/zeit/next.js) applications.
66

7-
Next.js allows ReactJS to be used both on the server and client, which is a great match for VS Code, as we can debug both the server and client at the same time! This means that you'll need to use two debugger instances within VS Code to debug both ends. This is the reason for why you'll need both the built-in Node Debugger and the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug).
7+
Next.js allows ReactJS to be used both on the server and client, which is a great match for VS Code, as we can debug both the server and client at the same time! This means that you'll need to use two debugger instances within VS Code to debug both ends.
88

99
**Note:** Please make sure you are using **Next.js 4.2.0-canary.1 or newer**, as our debuggers relies on source maps, and there's been a bunch of improvements for this in next.js.
1010

1111
## Getting Started
1212

1313
1. Make sure to have the latest version of VS Code installed.
1414

15-
2. Make sure to the latest version of [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) extension installed in VS Code.
16-
17-
3. This guide assumes that you are using the official sample app [nextgram](https://github.com/zeit/nextgram). Clone the repo to get started:
15+
2. This guide assumes that you are using the official sample app [nextgram](https://github.com/zeit/nextgram). Clone the repo to get started:
1816
>
1917
```
2018
git clone [email protected]:now-examples/nextgram.git

meteor/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,17 @@
22

33
by [Kenneth Auchenberg](https://twitter.com/auchenberg)
44

5-
This recipe shows how to use the built-in Node Debugger and the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension with VS Code to debug [meteor](https://www.meteor.com/) applications.
5+
This recipe shows how to use the built-in JavaScript deubgger in VS Code to debug [meteor](https://www.meteor.com/) applications.
66

7-
Meteor is used to write applications that run on both the server and client with the same code, and this is a great match for VS Code, as we can debug both the server and client at the same time! This means that you'll need to use two debugger instances within VS Code to debug both ends. This is the reason for why you'll need both the built-in Node Debugger and the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug).
7+
Meteor is used to write applications that run on both the server and client with the same code, and this is a great match for VS Code, as we can debug both the server and client at the same time! This means that you'll need to use two debugger instances within VS Code to debug both ends.
88

99
**Note:** Please make sure you are using **Meteor 1.6+ and Node.js 8.9+**, as our debuggers rely on the new Inspector protocol, which landed in [Meteor PR9201](https://github.com/meteor/meteor/pull/9201)
1010

1111
## Getting Started
1212

1313
1. Make sure to have the latest version of VS Code installed.
1414

15-
2. Make sure to have the latest version of [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) extension installed in VS Code.
16-
17-
3. This guide assumes that you are using the official sample app [simple-todos-react](https://github.com/meteor/simple-todos-react). Clone the repo to get started:
15+
2. This guide assumes that you are using the official sample app [simple-todos-react](https://github.com/meteor/simple-todos-react). Clone the repo to get started:
1816
>
1917
```
2018
git clone https://github.com/meteor/simple-todos-react

vuejs-cli/README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,29 @@
22

33
by [Kenneth Auchenberg](https://twitter.com/auchenberg)
44

5-
This recipe shows how to use the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension with VS Code to debug Vue.js applications generated by the [Vue CLI](https://github.com/vuejs/vue-cli).
5+
This recipe shows how to use the built-in JavaScript deubgger in VS Code to debug Vue.js applications generated by the [Vue CLI](https://github.com/vuejs/vue-cli).
66

77
If you're using Vue.js through the Nuxt.js framework, see https://codeburst.io/debugging-nuxt-js-with-visual-studio-code-724920140b8f
88

99
## Getting Started
1010

1111
1. Make sure to have [Google Chrome](https://www.google.com/chrome) installed in its default location.
1212

13-
2. Make sure to the latest version of [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) extension installed in VS Code.
14-
15-
3. Use [NPM](https://www.npmjs.com) to install [vue-cli](https://github.com/vuejs/vue-cli)
13+
2. Use [NPM](https://www.npmjs.com) to install [vue-cli](https://github.com/vuejs/vue-cli)
1614

1715
```
1816
npm install -g @vue/cli
1917
```
2018

21-
4. Use Vue CLI to create a new Vue.js app.
19+
3. Use Vue CLI to create a new Vue.js app.
2220

2321
```
2422
vue create hello-world
2523
```
2624

2725
You will be prompted to pick a preset. You can either choose the default preset which comes with a basic Babel + ESLint setup,or select "Manually select features" to pick the features you need.
2826

29-
5. Change to the newly created application directory and open VS Code.
27+
4. Change to the newly created application directory and open VS Code.
3028

3129
```
3230
cd hello-world

0 commit comments

Comments
 (0)