알고리즘 문제풀이 Node.js 방식으로 변경해서 풀기

BellBoy·2023년 11월 8일
0
post-custom-banner

https://kk3june.tistory.com/49

위 출처를 바탕으로 vscode에서 node.js를 이용한 알고리즘 풀이를 진행하려고 한다
파이썬으로 풀면 보다 간단하게 풀이할 수 있지만
js를 조금더 이해하기 위해선 node.js로 풀이가 필요하다고 생각해서 시작해보려고 한다

https://songjang.tistory.com/108

위글을 바탕으로 먼저
npm install nodemon을 설치한뒤
vscode 디버깅 환경에서 nodeMon으로 설정한 후

    {
        "console": "integratedTerminal",
        "internalConsoleOptions": "neverOpen",
        "name": "nodemon",
        "program": "${workspaceFolder}/index.js",
        "request": "launch",
        "restart": true,
        "runtimeExecutable": "nodemon",
        "skipFiles": [
            "<node_internals>/**"
        ],
        "type": "node"
    },

vscode 에서 디버깅 지점을 찍어서 실행하면 된다

profile
리액트러버
post-custom-banner

0개의 댓글