Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ListTile
- Column Widget
- Flutter Tutorial
- Cached Image
- FutureBuilder
- listview
- AppBar
- 반석천
- MainAxisAlignment
- navigator
- Scaffold
- sqlite
- node.js
- ListView.builder
- Image.network
- Flutter 예제
- HTTP
- Hello World
- Flutter 강좌
- Flutter Example
- WillPopScope
- Row Widget
- Row
- Networking
- CrossAxisAlignment
- Flutter 앱 배포
- InkWell
- flutter
- Snackbar
- Load Image
Archives
- Today
- Total
꿈꾸는 시스템 디자이너
NestJS 개발 환경 구성 본문
1. npm 설치
$ sudo apt-get install npm
2. node 설치
$ sudo npm i -g n
$ sudo n 14.17.6
3. Nest CLI 설치
$ sudo npm i -g @nestjs/cli
4. 테스트 프로젝트 생성
$ nest new test_project
5. 테스트 서버 실행
$ ls
test-project
$ cd test-project/
$ npm install
$ npm run start
> test-project@0.0.1 start /home/ubuntu/test-project
> nest start
[Nest] 12797 - 09/23/2021, 9:36:46 AM LOG [NestFactory] Starting Nest application...
[Nest] 12797 - 09/23/2021, 9:36:46 AM LOG [InstanceLoader] AppModule dependencies initialized +30ms
[Nest] 12797 - 09/23/2021, 9:36:46 AM LOG [RoutesResolver] AppController {/}: +6ms
[Nest] 12797 - 09/23/2021, 9:36:46 AM LOG [RouterExplorer] Mapped {/, GET} route +4ms
[Nest] 12797 - 09/23/2021, 9:36:46 AM LOG [NestApplication] Nest application successfully started +2ms
6. 웹브라우저로 접속 확인
'Development > JS' 카테고리의 다른 글
Next.js 팁 (0) | 2021.10.13 |
---|---|
[NestJS] 첫 번째 프로젝트 (0) | 2021.10.05 |
React 개발 환경 구성 (0) | 2021.09.30 |
NestJS 개발에 유용한 npm 패키지들 (0) | 2021.09.27 |
NestJS 기본 소스 구조 (0) | 2021.09.23 |
Comments