250x250
Notice
Recent Posts
Recent Comments
관리 메뉴

탁월함은 어떻게 나오는가?

[NestJS] OVERVIEW - First steps (개요 - 첫걸음) 본문

[Snow-ball]server/NestJS

[NestJS] OVERVIEW - First steps (개요 - 첫걸음)

Snow-ball 2022. 11. 11. 12:24
반응형

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

* NestJS 공식 홈페이지 - OVERVIEW First steps

반응형
Comments