0
2

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 でF5でホーム画面を起動して JaveScript をステップ実行する

Last updated at Posted at 2020-04-09

TypeScript 編は、
VSCode でF5でホーム画面を起動して TypeScript をステップ実行する を見てください。

ゴール

  • F5でホーム画面を起動 (CakePHP以外でもステップ実行までの手順は基本同じ?はずです)
    debugjs.gif

書かないこと

  • CakePHP のインストール手順

前提

プロジェクトルート 公開ルート ポート
c:\src\cake-app c:\src\cake-app\webroot 8765
  • CakePHP ビルトイン の簡易ウェブサーバ (port:8765) を起動していること
C:\src\cake-app\bin>cake server

Welcome to CakePHP v3.8.11 Console

Version

- version
VScode 1.43.2
Debugger for Chrome 4.12.6
Debugger for Firefox 2.7.1

準備

  1. デバッグ構成ファイルを作る
  1. (お好きな方の) 拡張をインストールしてデバッグ構成ファイルを編集

    ⅰ. Debugger for Chrome

    /.vscode/launch.json
    {
        "version": "0.2.0",
        "configurations": [
            {
                "type": "chrome",
                "request": "launch",
                "name": "Launch Chrome JavaScript",
                "url": "http://localhost:8765",
                "webRoot": "${workspaceFolder}/webroot"
            }
        ]
    }
    

    ⅱ. Debugger for Firefox

    /.vscode/launch.json
    {
        "version": "0.2.0",
        "configurations": [
            {
                "type": "firefox",
                "request": "launch",
                "name": "Launch Firefox JavaScript",
                "url": "http://localhost:8765",
                "webRoot": "${workspaceFolder}/webroot",
            }
        ]
    }
    
  2. ステップ実行対象を作成

    src/webroot/js/debug.js
    document.addEventListener("DOMContentLoaded", function() {
        console.log("on loaded");
    });
    
  3. ホーム画面 home.ctp でステップ実行対象を読み込む (<head></head> 内に追記)

--- a/src/Template/Pages/home.ctp
+++ b/src/Template/Pages/home.ctp
@@ -43,6 +43,8 @@ $cakeDescription = 'CakePHP: the rapid development PHP framework';
     <?= $this->Html->css('style.css') ?>
     <?= $this->Html->css('home.css') ?>
     <link href="https://fonts.googleapis.com/css?family=Raleway:500i|Roboto:300,400,700|Roboto+Mono" rel="stylesheet">
+    <?= $this->Html->script('debug.js') ?>
+    <!-- ↑同じ <script src="/js/debug.js"></script> -->
 </head>

ステップ実行

  1. F5でホーム画面を起動して「ブレークモード」になることを確認
    ※ firefoxの場合、ページのリロードが必要な場合あり Troubleshooting
0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?