일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 채권
- 프로그래밍언어
- 경제
- 자바
- 투자
- 서평
- 알고리즘트레이닝
- 자바스크립트
- 백준알고리즘
- 프로그래머스 알고리즘 공부
- 알고리즘공부
- 알고리즘 공부
- 화장품
- 돈
- 성분
- Java
- C++
- 책을알려주는남자
- C
- algorithmStudy
- 주식
- 재테크
- 다독
- algorithmtraining
- 책알남
- 지혜를가진흑곰
- algorithmTest
- 독후감
- 독서
- JavaScript
- Today
- Total
탁월함은 어떻게 나오는가?
[NestJS] OVERVIEW - First steps (개요 - 첫걸음) 본문
First steps
In this set of articles, you'll learn the core fundamentals of Nest.
이 글에서 너는 Nest의 핵심 기본 사항에 대해 배울 것이다.
To get familiar with the esential building blocks of Nest applications, we'll build a basic CRUD application with features that cover a lot of gorund at an introductory level.
네스트 애플리케이션을 만들기 위해 필수 구성 요소에 익숙해지기 위해서, 우리는 서두에서 많은 부분을 다루는 기능을 갖춘 기본 CRUD를 구축할 것이다.
Language
We're in love with TypeScript, but above all - we love Node.js
우리는 TypeScript와 사랑에 빠졌지만, 그러나 그 어떤 것 보다도 Node.js를 사랑한다.
That's why Nest is compatible with both TypeScript and pure JavaScript.
그것이 Nest가 TypeScript와 pure JavaScript 둘 다와 호환이 되는 이유이다.
Nest takes advantage of the latest language features, so to use it with vanilla JavaScript we need a Babel compiler.
Nest는 최신의 언어 기능을 활용하므로 vanilla JavaScript를 사용하려면 바벨 컴파일러가 필요하다.
We'll mostly use TypeSCript in the exxamples we provide, but you can always switch the code snippets to vanilla JavaScript syntax (simply click to toggle the language button in the upper right hand corner of each snippet).
우리 예제들은 TypeScript로 제공된다. 그러나 code snippets에서 vanilla JavaScript 구문으로 전환 할 수 있다. (각 snippet의 우측 상단 모서리에 있는 언어 버튼을 클릭하기만 하면 된다).
referance
'[Snow-ball]server > NestJS' 카테고리의 다른 글
[Nest.js] 네스트js websocket 에러 (0) | 2023.05.24 |
---|---|
[Nest.js] 스웨거 사용시 순환 참조 에러(enum 사용할 경우) (0) | 2023.03.27 |
[NestJS] Cannot read properties of undefined (reading '__garde__') ERROR (0) | 2023.02.19 |
[NestJS] 유닛 테스트(Unit Testing) 간단한 사용방법 코드 정리 (0) | 2023.02.01 |
[NestJS] Controller 단에서 @UseGuards 사용안했는데 Get요청이 401 Unauthorized 해결방법 (0) | 2022.12.08 |