シャドーイング練習: Every NestJS Concept Explained in 9 Minutes - YouTubeで英語スピーキングを学ぶ

C2
シャドーイング コントロール
0% 完了 (0/87 )
I know exactly which button to press on my microwave to heat up my food, but if it breaks, I wouldn't be able to fix it.
⏸ 一時停止中
すべての文
87
1
I know exactly which button to press on my microwave to heat up my food, but if it breaks, I wouldn't be able to fix it.
2
So the same goes for programming.
3
So have you ever wondered how some people seem to always know how to fix the code, where to find the relevant information, and how to best implement new features?
4
They don't actually know everything.
5
They just understand the key concepts and principles that allow them to navigate any piece of code they encounter.
6
And after countless hours of going through the NestJS documentation, I've condensed the entire framework into 10 core concepts.
7
And by the end of this video, I'm fairly confident that you too will be able to understand any NestJS code you encounter.
8
The first concept is not often talked about, but it's actually a key to understand what NestJS is and what you can build with it.
9
So there is a misconception that NestJS is only for building APIs.
10
but in fact, there are three types of applications you can build with Nest.
11
You can create HTTP server using the Nest Factory Create and request endpoints and effectively create APIs and web servers.
12
But you can also create microservices applications using Nest Factory Create Microservice.
13
And microservices are very similar to HTTP servers, except that they can use different transport protocol such as TCP or NAT, and they can communicate via an internal network.
14
And last but not least, you can also create standalone applications using Nest Factory Create Application Context.
15
And a standalone application is just an application that doesn't have network listener.
16
So they are great for creating scheduled tasks or creating CLI tools even if you want.
17
But they all have one thing in common.
18
They need a root module.
19
So let's talk about modules now.
20
Modules are the building blocks of a Nest application.
21
So you can picture a Nest app as a graph made of modules.
22
And at the top, you always have a root module, and that root module can use other modules, and those modules can themselves use other modules and so on.
23
For example, you could have an application with a product module, an order module that uses a cart and payment module, and they could all be using a shared configuration module.
24
In terms of the implementation, a module is a class that is annotated with a module decorator.
25
And you absolutely need to understand the concept of decorators because they are everywhere in NestJS.
26
Decorators can be a bit strange to start with, but once you understand what they are, it all clicks and you can do really powerful things.
27
So a decorator is a special kind of function and it can be attached to methods, classes, properties, and it modifies their behavior and it can even add metadata.
28
Think of decorators as wearing accessories or suits that give you extra power.
29
For example, you can take an empty naked class and dress it with a fancy shiny module decorator suit.
30
And that means that it can be used by other classes that are wearing the same shiny module decorator suit.
31
To create the application module graph, you define relationship between modules by passing an object property to the module decorators.
32
And you define the related modules in the import property.
33
And once you have modules, you can add controllers inside them.
34
Controllers are classes that are annotated with the controller decorator.
35
So let's say that they are wearing a blue jacket.
36
So a controller is simply in charge of receiving incoming requests and returning a response.
37
So you can define a root path in the controller decorator, and you add methods to handle the incoming request.
38
and those methods can be annotated with a HTTP verb and those decorators can take a sub root as parameter.
39
So the main role of the controller is to receive requests and return response.
40
Anything else is delegated to other classes.
41
Most of the code that you will be writing in Nest is within providers.
42
So a provider is simply a class that can be injected in other classes as dependency.
43
So let's take a user service class as an example.
44
So you annotate that class with the injectable decorator to indicate that it's a provider.
45
Then you declare it as a provider in the user's module.
46
And now you can inject it in the controller via the constructor so you can think of providers as
47
freelance workers and nest.js is an agency that places those freelance workers wherever they are needed and congratulations you've
48
used dependency injection and the singleton pattern now let me show you how to take full control of the request handling flow starting wheel middlewares.
49
When you want to take a plane, you don't just park on the tarmac and enter the plane.
50
So you have to go to check in your luggage, then you go through security, then you might even go through border control, then you show your boarding pass, and finally you get on the plane.
51
So just like a plane passenger, you can make a request go through several stages before it's handed over to the method handler.
52
So for example, you could use middleware to log every incoming requests.
53
But don't start adding middlewares everywhere because I'll show you in the next concept that Nest comes with built-in features for common request flow management.
54
Guards are a critical part of the request lifecycle in NestJS.
55
So they work more or less like security check at an airport and their primary purpose is to determine whether the request will be handled by the root handler based on specific conditions like roles, permissions, or any custom logic.
56
So they They have access to the execution context, and that allows them to inspect some details about the request.
57
For example, an authentication guard can check if the user is authenticated and authorized to access a requested resource.
58
And if the guard returns true, then the request passes through.
59
And if it returns false, then the request is denied, and we'd send an error response to the client, for example.
60
After the guard, you can add interceptors to your application.
61
So they run before and after the root handler.
62
So they give you full control over the request response cycle.
63
So interceptors implement the nest interceptor interface and they can perform tasks like logging or caching.
64
For example, an interceptor can log request details or map the response and input data format.
65
The next stop before getting to the handler is pipes.
66
So that's where you can validate and transform the data that is handed to the handler to ensure that it meets certain criteria or is in the correct format.
67
So pipes are classes that implement the pipe transform interface and they are annotated with the injectable decorator.
68
So for instance, a pipe can validate the data sent in the request to ensure that it conforms with the expected format or the expected type or certain constraints.
69
It's up to you to implement whatever validation rules you want.
70
But if the data is invalid, then the pipe can throw an exception, preventing the root handler from executing.
71
Additionally, pipes can transform the data into a more suitable format for processing.
72
For example, a pipe can convert a string input into integer or parse dates from string representations.
73
So built-in pipes like validation pipe, parsing pipe, and parse UUID offer some common validation and transformation.
74
but you can also create custom pipes to handle specific requirements.
75
If at any point during the request handling, there is an unhandled error, Nest.js would return a 500 internal error by default.
76
But you can manually throw standard HTTP exceptions as well and be a bit more descriptive.
77
And you can even customize error handling through exception filters.
78
Exception filters are classes that implement the exception filter interface and they are decorated with the catch decorator.
79
They can catch exceptions thrown by any part of the request handling process, including guards, interceptors, pipes, or root handlers, of course.
80
But when an exception is caught, the filter determines how to handle it and what response to send.
81
For example, you can have like a global exception filter that can catch all exceptions, log the error details and return a standard error response to the client.
82
So this ensures that the client receives consistent error messages and that sensitive information is not exposed.
83
And that will make front-end developers very happy as well.
84
So exception filters provide a centralized way of handling errors and maintain the stability and security of your application.
85
Everything that I've just shown you needs to be applied if you want these concepts to stick.
86
You can watch this next video and apply those concepts, and you can follow along as I build a podcast API from scratch.
87
And in that video, I'll also show you how to test your app.
App StoreとGoogle Playで4.9/5

Shadowing English モバイル版

Shadowing Englishアプリでいつでもどこでも英語を学びましょう。 今すぐコミュニケーションスキルを向上させましょう!

学習の進捗を追跡する
AIによる採点とエラー修正
豊富な動画ライブラリ
Shadowing English Mobile App

このレッスンについて

このレッスンでは、プログラミングの基本概念を中心に、NestJSフレームワークについての理解を深めます。特に、どのようにして様々なアプリケーションを構築するのか、モジュールやデコレーターの役割について学びます。このレッスンを通じて、英語での技術的な表現をマスターし、実際の会話やIELTS スピーキング対策に役立てることができるでしょう。

重要な語彙とフレーズ

  • デコレーター (Decorator): プログラムのクラスやメソッドの動作を修正する特別な関数。
  • モジュール (Module): NestJSアプリケーションの基本構成要素。
  • プロバイダー (Provider): 他のクラスに依存性注入されるクラス。
  • コントローラー (Controller): 受信したリクエストを処理する役割を持つクラス。
  • マイクロサービス (Microservice): 特定の機能を持つ小規模なサービス。
  • 依存性注入 (Dependency Injection): クラスの依存関係を管理する手法。
  • HTTPサーバー (HTTP Server): クライアントからのリクエストを受け付けるサーバー。
  • スタンドアロンアプリケーション (Standalone Application): ネットワークリスナーを持たないアプリケーション。

練習のコツ

このビデオのスピードとトーンに合わせて、shadowspeakshadowspeaksの技術を使って英語のリスニング・スピーキング練習を行いましょう。動画を聞いた後、重要なフレーズを繰り返して発音練習をしましょう。特に専門用語やプログラミング関連の語彙は、自信を持って話せるようになるために重要です。リズムやイントネーションも意識して、英語シャドーイングを行うことで、リスニング力とスピーキング力の向上につながります。また、学んだ内容を友人や仲間との会話に取り入れ、実践することで、英語スピーキング練習の効果を高めることができます。

シャドーイングとは?英語上達に効果的な理由

シャドーイング(Shadowing)は、もともとプロの通訳者養成プログラムで開発された言語学習法で、多言語習得者として知られるDr. Alexander Arguelles によって広く普及されました。方法はシンプルですが非常に効果的:ネイティブスピーカーの英語を聞きながら、1〜2秒の遅延で声に出してすぐに繰り返す——まるで「影(shadow)」のように話者を追いかけます。文法ドリルや受動的なリスニングと異なり、シャドーイングは脳と口の筋肉が同時にリアルタイムで英語を処理・再現することを強制します。研究により、発音精度、抑揚、リズム、連音、リスニング力、そして会話の流暢さが大幅に向上することが確認されています。IELTSスピーキング対策や自然な英語コミュニケーションを目指す方に特におすすめです。

コーヒーをおごる