vscode + it tool vscode postman postman 보다 훨씬 좋은 vscode extension rest client wono | discuss | tweet + it tool vscode postman [VSCode] 💽 Thunder Client (포스트맨 대신 이거 쓰자)보통 웹개발할 때 API 요청에 대한 결과를 체계적으로 확인하기 위해 포스트맨(Postman) 을 많이 들 사용한다. Postman은 API 개발, 테스팅, 문서화 및 모니터링을 위한 인기있는 플랫폼이다. 개발자들이 API 요청을 생성하고, 응답을 테스트하며, 협업을 통해 API를 관리할 수 있게 도와준다. 크롤링, RESTful 서비스, GraphQL 등 다양한 유형의 API와 커뮤니케이션할 때 유용한 도구로 사용된다. 하지만 단순히 API를 테스트 하는 목적으로서 포스트맨을 사용한다면 너무 기능이 과하고 무겁다. 따라서 VSCode 에디터 내에서 간단한 조작만으로 API 테스트를 빠르고 수월하게 할 수 있는 익스텐션을 소개해본다. Thunder Client Thunder Client 는 Postman.. wono | discuss | tweet + it qa vscode vmargs Running the contributed command: 'java.execute.workspaceCommand' failed. · Issue #1023 · microsoft/vscode-java-debug[provide a description of the issue] Environment Operating System: win10 21h1 JDK version: 16.0.1 Visual Studio Code version: 1.57.1 Java extension version: 0.16.0 Java Debugger extension version: 0.34.0 Issues When running a Java Progra... wono | discuss | tweet + it ops vscode tomcat Working with application servers in Visual Studio CodeTomcat, Jetty and Open Liberty extensions for Java developer using Visual Studio Code. wono | discuss | tweet + it ops vscode tomcat euc-kr vscode의 tomcat서버 출력로그 한글이.. : 네이버블로그 wono | discuss | tweet + it dev java vscode jdk JDK RequirementsJava Language Support for Visual Studio Code. Contribute to redhat-developer/vscode-java development by creating an account on GitHub. wono | discuss | tweet + it qa tomcat vscode Work with java 8 · Issue #129 · redhat-developer/vscode-rsp-uiHello there. I have project in java 8, and minimum java version that vscode requires now is 11. RSP uses that java version (11) to start application server (in my case wildlfy 17.1), but my project is not compatible with java 11 and I ge... wono | discuss | tweet + it dev spring vscode What is the .springBeans file? wono | discuss | tweet + it dev java vscode vscode에서 Java 클래스 경로 추가하는 방법Eclipse로 설계된 Java를 Pycharm이나 vscode로 실행하다 보면 기존의 Class 경로 설정이 맞지 않아 분명 같은 패키지 안에 있는 파일이 인식되지 않는 문제를 최근 경험하곤 합니다. vscode에서 path를 설정하는 방법이 있는지 열심히 찾아보니 그냥 프로젝트 내에 있는 파일인 '.classpath'를 수정하면 된다는군요. 일단 .classpath가 목록에 보이지 않는 분께서는 아래 주소를 통해 .classpath를 찾아보도록 합니다. https://hyunchang88.tistory.com/320 [ vscode ] .classpath가 안보일때 보이게 하는 방법 vscode를 사용한지 얼마 안되어서 검색을 해봤는데 .classpath 에서 뭔가를 수정하라고 해서 수정하려고 보니 .. wono | discuss | tweet + it dev vscode spring vs code - Expected java package name error wono | discuss | tweet + it dev java vscode Java 프로젝트 별 JDK 설정 방법Java 프로젝트 개발환경 일반적으로 VScode로 Java 개발을 할 때, JDK 경로는 VScode의 Settings.json 파일에서 다음과 같이 설정됩니다. { "java.jdt.ls.java.home": "JDK 경로", } 그러나 모든 Java 프로젝트가 동일한 JDK 버전을 사용하는 것은 아닙니다. 때로는 특정 프로젝트에서 다른 JDK를 사용해야하는 경우가 있습니다. root ├─ .gradle ├─ .vscode │ └─ settings.json └─ src ├─ main └─ test 이 경우 프로젝트 내부 .vscode 폴더 내부에 있는 settings.json 파일에서 다음과 같이 설정하면 됩니다. { "java.jdt.ls.java.home": "JDK 경로", } 이렇게 하면 해당.. wono | discuss | tweet + it tool vscode accept [VS Code] 쉼표(,), 세미콜론(;) 등으로 자동 완성 기능 끄기💡 VS Code에서의 자동 완성은 굉장히 편리하다. VS Code 뿐 아니라 여타 IDE에서의 자동 완성은 '생산성 향상'을 도와준다.하지만 VSCODE의 디폴트 설정과 내 일하는 방식이 충돌을 일으켜 생산성을 떨어뜨리는 경우가 종종 생긴다. 코딩을 처음 할 땐 디 wono | discuss | tweet + it qa vscode [TypeScript] Go to definition goes to *.d.ts when across project references · Issue #73201 · microsoft/vscodeThe issue is, with project reference, going to the generated declaration file is really inconvenient. It should be possible to go directly into the source file. Not sure this is a dup since many issues have been reported and it's unclear... wono | discuss | tweet + it dev vscode typescript tsconfig.json을 설정해보자Typescript는 동적 타입 언어인 Javascript를 타입이 있는 언어로 사용할 수 있게 해주는 언어이다. Typescript로 작성된 코드는 트랜스파일러(컴파일러)를 통해 Javascript로 변환된다. 아래 명령어로 컴파일을 한다. tsc index.ts 컴파일 과정에서 여러 옵션을 정할 수 있는데, 해당 옵션들을 작성하는 파일이 tsconfig.json 이다. Typescript에 가장 기본이 되는 tsconfig.json 파일을 설정해보자. 디렉토리에 tsconfig.json 파일이 있다면 해당 디렉토리가 Typescript 프로젝트의 루트가 된다. tsconfig.json 파일은 프로젝트를 컴파일하는 데 필요한 루트 파일과 컴파일러 옵션을 지정한다. 설치하기 npx tsc --init t.. wono | comment (1) | tweet + dev tip vscode prettier Code formatting Visual Studio Code - Line Lengthtab width 4 > 2 print width 80 > 160 wono | comment (1) | tweet + dev tip vscode Tips: Typescript Indent Set in VSCodeTips: Typescript Indent Set in VSCode. Visual Source Code은 언어별로 서로 다른 에디터 환경 설정이 가능하다. 타입 스크립트 언어의 들여쓰기 tabSize 기본 값이 2인데 이를 변경하는 방법에 대해서 알아 본다.. wono | discuss | tweet + dev tip vscode How can I customize the tab-to-space conversion factor in VS Code? wono | discuss | tweet + it dev nodejs nestjs vscode [NestJS] NestJS 시작 (설치 & 구성요소 맛보기)이제 드디어 NestJS로 어떻게 백엔드 서버를 만들 수 있는지에 대해 알아보도록 하겠습니다. NestJS는 강력한 typing, interfaces, decorator와 같은 기능을 추가하는 TypeScript를 기반으로 구축됩니다. NestJS는 Angular로부터 강한 영감을 받았고 실제로 Dependency Injection, modules, controller와 같은 대부분의 동일한 기능들을 제공합니다. Angular의 이러한 요소는 확장가능하도록 디자인 되어 개발자들이 NestJS의 기능을 확장하기 위해 자기들의 모듈과 플러그인을 만들 수 있다는 것을 의미합니다. 이번 포스팅에서는 NestJS 공식문서를 참고하여 우리가 앞서 배워왔던 개념들을 실제로 어떻게 적용할 수 있는지, 코드 위주로 살.. wono | discuss | tweet + it dev tool ide vscode Spring Boot support in Visual Studio CodeSpring Boot extensions for Java developer using Visual Studio Code editor. wono | discuss | tweet + it dev tool figma vigma vscode Vigma RN: 실시간 코드를 생성하는 VSCode속의 Figma – 노마드 코더 Nomad CodersPost on 노마드 코더 Community wono | discuss | tweetNext
+ it tool vscode postman [VSCode] 💽 Thunder Client (포스트맨 대신 이거 쓰자)보통 웹개발할 때 API 요청에 대한 결과를 체계적으로 확인하기 위해 포스트맨(Postman) 을 많이 들 사용한다. Postman은 API 개발, 테스팅, 문서화 및 모니터링을 위한 인기있는 플랫폼이다. 개발자들이 API 요청을 생성하고, 응답을 테스트하며, 협업을 통해 API를 관리할 수 있게 도와준다. 크롤링, RESTful 서비스, GraphQL 등 다양한 유형의 API와 커뮤니케이션할 때 유용한 도구로 사용된다. 하지만 단순히 API를 테스트 하는 목적으로서 포스트맨을 사용한다면 너무 기능이 과하고 무겁다. 따라서 VSCode 에디터 내에서 간단한 조작만으로 API 테스트를 빠르고 수월하게 할 수 있는 익스텐션을 소개해본다. Thunder Client Thunder Client 는 Postman.. wono | discuss | tweet
+ it qa vscode vmargs Running the contributed command: 'java.execute.workspaceCommand' failed. · Issue #1023 · microsoft/vscode-java-debug[provide a description of the issue] Environment Operating System: win10 21h1 JDK version: 16.0.1 Visual Studio Code version: 1.57.1 Java extension version: 0.16.0 Java Debugger extension version: 0.34.0 Issues When running a Java Progra... wono | discuss | tweet
+ it ops vscode tomcat Working with application servers in Visual Studio CodeTomcat, Jetty and Open Liberty extensions for Java developer using Visual Studio Code. wono | discuss | tweet
+ it dev java vscode jdk JDK RequirementsJava Language Support for Visual Studio Code. Contribute to redhat-developer/vscode-java development by creating an account on GitHub. wono | discuss | tweet
+ it qa tomcat vscode Work with java 8 · Issue #129 · redhat-developer/vscode-rsp-uiHello there. I have project in java 8, and minimum java version that vscode requires now is 11. RSP uses that java version (11) to start application server (in my case wildlfy 17.1), but my project is not compatible with java 11 and I ge... wono | discuss | tweet
+ it dev java vscode vscode에서 Java 클래스 경로 추가하는 방법Eclipse로 설계된 Java를 Pycharm이나 vscode로 실행하다 보면 기존의 Class 경로 설정이 맞지 않아 분명 같은 패키지 안에 있는 파일이 인식되지 않는 문제를 최근 경험하곤 합니다. vscode에서 path를 설정하는 방법이 있는지 열심히 찾아보니 그냥 프로젝트 내에 있는 파일인 '.classpath'를 수정하면 된다는군요. 일단 .classpath가 목록에 보이지 않는 분께서는 아래 주소를 통해 .classpath를 찾아보도록 합니다. https://hyunchang88.tistory.com/320 [ vscode ] .classpath가 안보일때 보이게 하는 방법 vscode를 사용한지 얼마 안되어서 검색을 해봤는데 .classpath 에서 뭔가를 수정하라고 해서 수정하려고 보니 .. wono | discuss | tweet
+ it dev java vscode Java 프로젝트 별 JDK 설정 방법Java 프로젝트 개발환경 일반적으로 VScode로 Java 개발을 할 때, JDK 경로는 VScode의 Settings.json 파일에서 다음과 같이 설정됩니다. { "java.jdt.ls.java.home": "JDK 경로", } 그러나 모든 Java 프로젝트가 동일한 JDK 버전을 사용하는 것은 아닙니다. 때로는 특정 프로젝트에서 다른 JDK를 사용해야하는 경우가 있습니다. root ├─ .gradle ├─ .vscode │ └─ settings.json └─ src ├─ main └─ test 이 경우 프로젝트 내부 .vscode 폴더 내부에 있는 settings.json 파일에서 다음과 같이 설정하면 됩니다. { "java.jdt.ls.java.home": "JDK 경로", } 이렇게 하면 해당.. wono | discuss | tweet
+ it tool vscode accept [VS Code] 쉼표(,), 세미콜론(;) 등으로 자동 완성 기능 끄기💡 VS Code에서의 자동 완성은 굉장히 편리하다. VS Code 뿐 아니라 여타 IDE에서의 자동 완성은 '생산성 향상'을 도와준다.하지만 VSCODE의 디폴트 설정과 내 일하는 방식이 충돌을 일으켜 생산성을 떨어뜨리는 경우가 종종 생긴다. 코딩을 처음 할 땐 디 wono | discuss | tweet
+ it qa vscode [TypeScript] Go to definition goes to *.d.ts when across project references · Issue #73201 · microsoft/vscodeThe issue is, with project reference, going to the generated declaration file is really inconvenient. It should be possible to go directly into the source file. Not sure this is a dup since many issues have been reported and it's unclear... wono | discuss | tweet
+ it dev vscode typescript tsconfig.json을 설정해보자Typescript는 동적 타입 언어인 Javascript를 타입이 있는 언어로 사용할 수 있게 해주는 언어이다. Typescript로 작성된 코드는 트랜스파일러(컴파일러)를 통해 Javascript로 변환된다. 아래 명령어로 컴파일을 한다. tsc index.ts 컴파일 과정에서 여러 옵션을 정할 수 있는데, 해당 옵션들을 작성하는 파일이 tsconfig.json 이다. Typescript에 가장 기본이 되는 tsconfig.json 파일을 설정해보자. 디렉토리에 tsconfig.json 파일이 있다면 해당 디렉토리가 Typescript 프로젝트의 루트가 된다. tsconfig.json 파일은 프로젝트를 컴파일하는 데 필요한 루트 파일과 컴파일러 옵션을 지정한다. 설치하기 npx tsc --init t.. wono | comment (1) | tweet
+ dev tip vscode prettier Code formatting Visual Studio Code - Line Lengthtab width 4 > 2 print width 80 > 160 wono | comment (1) | tweet
+ dev tip vscode Tips: Typescript Indent Set in VSCodeTips: Typescript Indent Set in VSCode. Visual Source Code은 언어별로 서로 다른 에디터 환경 설정이 가능하다. 타입 스크립트 언어의 들여쓰기 tabSize 기본 값이 2인데 이를 변경하는 방법에 대해서 알아 본다.. wono | discuss | tweet
+ dev tip vscode How can I customize the tab-to-space conversion factor in VS Code? wono | discuss | tweet
+ it dev nodejs nestjs vscode [NestJS] NestJS 시작 (설치 & 구성요소 맛보기)이제 드디어 NestJS로 어떻게 백엔드 서버를 만들 수 있는지에 대해 알아보도록 하겠습니다. NestJS는 강력한 typing, interfaces, decorator와 같은 기능을 추가하는 TypeScript를 기반으로 구축됩니다. NestJS는 Angular로부터 강한 영감을 받았고 실제로 Dependency Injection, modules, controller와 같은 대부분의 동일한 기능들을 제공합니다. Angular의 이러한 요소는 확장가능하도록 디자인 되어 개발자들이 NestJS의 기능을 확장하기 위해 자기들의 모듈과 플러그인을 만들 수 있다는 것을 의미합니다. 이번 포스팅에서는 NestJS 공식문서를 참고하여 우리가 앞서 배워왔던 개념들을 실제로 어떻게 적용할 수 있는지, 코드 위주로 살.. wono | discuss | tweet
+ it dev tool ide vscode Spring Boot support in Visual Studio CodeSpring Boot extensions for Java developer using Visual Studio Code editor. wono | discuss | tweet
+ it dev tool figma vigma vscode Vigma RN: 실시간 코드를 생성하는 VSCode속의 Figma – 노마드 코더 Nomad CodersPost on 노마드 코더 Community wono | discuss | tweet