0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vscodeでjavascriptデバッグ方法(chrome)

Last updated at Posted at 2021-09-30

vscodeでjavascriptデバッグ方法(chrome)の備忘録。

まず、2つのvscodeの拡張機能をインストールする。
・debugger for chrome
・Live Server

以下サンプルファイル

index.html
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DEBUG</title>
</head>
<body>
    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
    <script type="text/javascript" src="javascriptdebug.js"></script>
</body>
</html>
javascriptdebug.js
$(function(){

console.log('debugging!');

});

index.htmlの画面を右クリックして「open with Live Server」をクリックする。
(簡易webサーバー起動)

lanch.jsonファイルの設定を行う。

lanch.json
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "localhost に対して Chrome を起動",
            "url": "http://localhost:5500/",
            "webRoot": "${workspaceFolder}"
        }
    ]

注意点としては、"url"と"webRoot"はこのままの設定で。

javascriptファイルにブレークポイントを設定し、「デバッグ開始」を押すと
ブレークポイントで停止した。

あと、docker環境でもこの設定でできた。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?