Editor/VSC (11) 썸네일형 리스트형 VSC에서 디버깅하기 익스텐션 아이콘 -> debugger 검색 -> Debugger for Chrome 설치 Debug 아이콘을 클릭하고 js코드를 선태가고 Start Debugging 버튼을 누른다. LOADED SCRIPTS에 Break Point를 찍고 Launch하면 아래와 같이 크롬이 뜨고 디버깅 과정을 확인 할 수 있다. Debug Console로 원하는 변수 값을 확인할 수 있다. VSC에서 Chrome으로 실행하기 javacript 파일을 선택한 후 ctrl+shift+P 를 누르고 configure task create task.json file from template MSBuild 선택 tasks.json 파일이 만들어진다. 아래의 내용으로 변경해 준다. { "version": "2.0.0", "tasks": [ { "taskName": "chrome", "type": "process", "command": "chrome.exe", "windows": { "command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" }, "args": [ "${file}" ], "problemMatcher": [], "group": { "kind":.. VSC로 시작하는 JS View -> Extensions 클릭 Debugger for Chrome 설치 로컬서버로 MAMP를 설치 및 실행 Apache Server가 실행이 안되서 피곤했었다. 포트를 안쓰는 포트로 아무리 바꿔도 잘 안되었었는데 Standard Version을 7.2.14로 실행하니 해결되었다. https://stackoverflow.com/questions/46868318/mamp-wont-start-apache-windows-10 Mamp won't start apache (Windows 10) I've installed MAMP Pro on my Windows 10 Computer this week, and it worked fine until today. I've restarted my computer .. 이전 1 2 다음