の日本コミュニティ。 Japanese community of the popular editor VS Code. 二ヶ月に1度ほど、ミートアップイベントを開催。 Meetup events are held about once every two months. 1Dayイベントを約年1回ペースで開催。次は 2024年4月20日(土)の予定! 1Day events are held approximately once a year. The next one is scheduled for Saturday, April 20, 2024! 前回のイベントではPostmanさんとコラボイベントを実施!(Youtube公開中) The last event was a collaborative event with Postman! (Youtube available)
of "VS Code Practical Guide" • 『VS Codeデバッグ技術 2nd Edition』 (同人誌・技術書典11)では148ページに渡り、 VS Codeのデバッグ実践方法を解説。 ”VS Code Debugging Practice Guide”(fun tech book) • VS Codeのツールが登場すると、 デバッグ機能とのユースケースを考えるのが趣味。 When VS Code tools are available,I enjoy thinking about use cases with debugging capabilities. ↓ • Postman拡張機能で便利にデバッグしたい…… I’ll try to use Postman extension for debugging ......
debuggable. • APIようなプログラムも、デバッガを有効にして起動できる。 API-like programs can also be launched with the debugger enabled. • デバッグ起動した状態で、Postmanを動かせば、ステップ実行ができる。 With the debugger activated, you can run Postman for step execution. TodoList API RestAPI Client Token Validation API Mock gRPC Client gRPC Open API Open API
• 単体テストはUsecase層(Clean Architecture)しかやってなかったが、 Gateway層が手軽になるのは助かる。 The only unit test I did was the Usecase layer (Clean Architecture), It would be great if the Gateway layer could be done more easily. • VS Codeの機能がまだ限定的で、今後に期待したい(特にgRPC)。 VS Code's functionality is still limited, and I hope to see more of it in the future (especially gRPC). • 実務では10以上のサービスと連携するので、モックはありがたいかも。 In practice, we will be integrating with more than 10 services, so mocks may be helpful. ◦ ただし、全てのサービスでモック実装は1チームで使うには大変。 However, implementing mocks for all services would be difficult for one team to use.
we were able to test from the Gateway layer via Postman and debug within VS Code. • Microservice開発するならば、モックがあると捗る。 If you are developing a microservice, it is very useful to have a mock.