Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Effective Debugging Apps in VS Code
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
murajun1978
November 15, 2018
Programming
1k
1
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Effective Debugging Apps in VS Code
My LT Slide
Event:
https://ateam.connpass.com/event/104825/
murajun1978
November 15, 2018
More Decks by murajun1978
See All by murajun1978
変化を楽しむエンジニアリング ~ いままでとこれから ~
murajun1978
0
1.4k
How to Enjoy the Murajun’s Style
murajun1978
0
110
Building Tebukuro with Hotwire and Rails
murajun1978
0
1.6k
Zeitwerk integration in Rails 6.0
murajun1978
0
150
Efficient development with GraphQL
murajun1978
0
340
tebukuro
murajun1978
0
150
Shinosaka.rb #17 Hands on
murajun1978
0
74
New Features in Rails 4.2
murajun1978
0
970
shinosakarb #11 Rails 4 Pattenrs
murajun1978
1
190
Other Decks in Programming
See All in Programming
霧の中の代数的エフェクト
funnyycat
1
450
AWS CDK を「作」ってみた 〜フルスクラッチで見えた CDK の裏側〜 / aws-cdk-from-scratch
gotok365
3
2.7k
Google Apps Script で Ruby を動かす
kawahara
0
120
【やさしく解説 設計編 #0】DDDのコード、読めるのに分からない人へ
panda728
PRO
2
300
Claude Team Plan導入・ガイド
tk3fftk
0
250
PHP に部分適用が来るぞ!……ところで何それ?おいしいの? #phpcon / phpcon-2026
shogogg
0
480
メールのエイリアス機能を履き違えない
isshinfunada
0
200
使いながら育てる Claude Code — 開発フローの1コマンド化 × 繰り返し指摘の自動仕組み化
shiki_kakaku
0
1.5k
Prismを使った型安全な暗号化_関数型まつり2026
_fhhmm
0
160
Build-to-own AI: Agentic Development for Humans
inesmontani
PRO
0
160
為什麼你並不需要ViewModel / No, you don't need a ViewModel
lovee
1
460
言語を使う側から、作る側へ。 自作 Lisp で得た新たな気づき。
andpad
0
140
Featured
See All Featured
DevOps and Value Stream Thinking: Enabling flow, efficiency and business value
helenjbeal
1
280
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
1.7k
SERP Conf. Vienna - Web Accessibility: Optimizing for Inclusivity and SEO
sarafernandez
2
1.5k
The Mindset for Success: Future Career Progression
greggifford
PRO
0
430
Principles of Awesome APIs and How to Build Them.
keavy
128
18k
We Have a Design System, Now What?
morganepeng
55
8.2k
Game over? The fight for quality and originality in the time of robots
wayneb77
1
230
Noah Learner - AI + Me: how we built a GSC Bulk Export data pipeline
techseoconnect
PRO
0
340
First, design no harm
axbom
PRO
2
1.2k
The Cult of Friendly URLs
andyhume
79
7k
The Pragmatic Product Professional
lauravandoore
37
7.4k
Reality Check: Gamification 10 Years Later
codingconduct
0
2.2k
Transcript
Effective Debugging React Apps in VS Code
About me むらじゅん (@murajun1978) Skils: Node.js, React, Ruby, Rails, GraphQL
Community: Shinosaka.rb, Rails Follow-up Osaka
Shinosaka.rb #32 https://shinosakarb.doorkeeper.jp/events/82341
No more Print debug
Debugging is one of the important skills for Programmer
Next.js debugging in VS Code
Build-in node.js debugger
Debugging of the Render process
"configurations": [ { "type": "chrome", "request": "launch", "name": "Debug Render",
"url": "http://localhost:3000", "webRoot": "${workspaceFolder}" }, { "type": "node", "request": "launch", "name": "Debug Server", "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/next", "runtimeArgs": [ "--inspect", ], "port": 9229, } ], "compounds": [ { "name": "Debug Next.js", "configurations": ["Launch Chrome", "Debug Server"] } ]
None
Debugging of Node process
"configurations": [ { "type": "chrome", "request": "launch", "name": "Debug Render",
"url": "http://localhost:3000", "webRoot": "${workspaceFolder}" }, { "type": "node", "request": "launch", "name": "Debug Server", "runtimeExecutable": "node", "runtimeArgs": [ "--inspect", "server.js" ], "port": 9229, } ], "compounds": [ { "name": "Debug Next.js", "configurations": ["Launch Chrome", "Debug Server"] } ]
None
Rails debugging in VS Code
None
None
Extension: Ruby
Gems ruby-debug-ide https://github.com/ruby-debug/ruby-debug-ide debase https://github.com/denofevil/debase
Not stopping on breakpoint
gem 'ruby-debug-ide', '0.7.0.beta6' gem 'debase', '0.2.3.beta2'
VS Code Recipes https://github.com/Microsoft/vscode-recipes
No more Print debug
Effective debugging with VS Code
Thank you