728x90

https://olppaemmit.tistory.com/143

 

[토이 프로젝트] VScode Extension 만들기(1) - 환경 세팅 및 프로젝트 생성

1. 환경 세팅 Node.js (https://nodejs.org/en/) Git (https://git-scm.com/) Yeoman (https://yeoman.io/) npm install -g yo VS Code Extension Generator (https://www.npmjs.com/package/generator-code) npm..

olppaemmit.tistory.com

이전에, 프로젝트 생성 확인을 위해 명령 팔레트에 작성한 Hello World에서 Hello World from toDoList! 라는 메시지가 떴다.

그 메시지를 변경해보겠다!

 

1. extension.js 파일 찾기 (TypeScript라면, extension.ts 파일)

 

2. 메시지 변경하기

내 파일기준 24줄에서, 'I am toDoList :)'라고 메시지를 변경했다.

 

3. 메시지 확인하기

F5 > Shift + Command + P > Hello World > enter

다음과 같이 아래에 위에서 작성한 메시지 I am toDoList :) 가 뜨는 걸 확인할 수 있다.


참고 사이트 : https://code.visualstudio.com/api/get-started/your-first-extension

 

Your First Extension

Create your first Visual Studio Code extension (plug-in) with a simple Hello World example.

code.visualstudio.com

 

728x90

+ Recent posts