TypeScript 웹 애플리케이션 프레임 워크 "Nest"로 Hello World

2035 단어 YARNNestJSTypeScript
본고에서는, TypeScript제의 Web 어플리케이션 프레임워크 「Nest」로 Hello World 하는 방법을 해설한다.

이 논문에서 얻은 것


  • yarn를 사용하여 nest 명령을 설치하는 방법
  • nest 명령을 사용하여 새 프로젝트를 생성하는 방법
  • 응용 프로그램 서버를 시작하는 방법

  • nest 명령을 설치하는 방법


    yarn global add @nestjs/cli
    
    $ nest -V
    6.2.1
    

    새로운 프로젝트 생성


    nest new プロジェクト名 에서 새 프로젝트를 생성합니다. 아래의 예에서는, hello-world 라는 디렉토리가 신규 작성되어 거기에 파일군이 생성된다.
    nest new hello-world
    

    패키지 매니저를 npm 로 할 것인가 yarn 로 할 것인가 들린다. 이것은 마음에 드는 것이다. 나는 yarn를 사용하고 있기 때문에 yarn를 선택했습니다.



    생성된 파일:
    ./hello-world
    ├── README.md
    ├── nest-cli.json
    ├── node_modules
    ├── nodemon-debug.json
    ├── nodemon.json
    ├── package.json
    ├── src
    │   ├── app.controller.spec.ts
    │   ├── app.controller.ts
    │   ├── app.module.ts
    │   ├── app.service.ts
    │   └── main.ts
    ├── test
    │   ├── app.e2e-spec.ts
    │   └── jest-e2e.json
    ├── tsconfig.build.json
    ├── tsconfig.json
    ├── tslint.json
    └── yarn.lock
    

    애플리케이션 서버를 시작하는 방법



    응용 프로그램 서버를 시작하려면 프로젝트의 디렉토리로 이동하여 yarn run start를 실행하십시오.
    cd hello-world
    yarn run start
    



    서버가 시작되면 http://localhost:3000/에 액세스합니다. Hello World가 표시됩니다.

    좋은 웹페이지 즐겨찾기