본문 바로가기

Learning

(54)
DTO (Data Transfer Object) 입력받는 데이터를 검증하기 main.ts에 파이프 추가 import { ValidationPipe } from '@nestjs/common'; import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); app.useGlobalPipes( new ValidationPipe({ whitelist: true, //dto 정의된 타입외 값은 허용하지 않는다. forbidNonWhitelisted:true, //정해진 필드가 아닌 경우 에러를 보낸다. transform:true, /..
NestJS 시작 하다 솔직히 시작한지 몇일이 지난 상황이라 기본 설치 부분을 캡쳐하지 못하였다... 우선 나는 노마드코더에 니콜라스님의 강좌를 보고 시작을 하였다 설치 부분부터 강좌가 아주 잘되어 있다. 처음 하는 분은 나처럼 아래의 강좌를 보는것을 추천 한다. nomadcoders.co/nestjs-fundamentals/lectures/1964 All Courses – 노마드 코더 Nomad Coders 초급부터 고급까지! 니꼬쌤과 함께 풀스택으로 성장하세요! nomadcoders.co https://docs.nestjs.com/ Documentation | NestJS - A progressive Node.js framework Nest is a framework for building efficient, scalabl..
ubuntu서버 미러서버 변경 기존의 패키지 설치 서버가 너무 느리다 보니 빠른 카카오로 변경한다 sudo vi /etc/apt/sources.list 파일이 열리면 전부 변경을 해준다 :%s /kr.archive.ubuntu.com/mirror.kakao.com 다음 업데이트 sudo apt-get update
ubuntu 작업중 자주 쓰는 모음 IP 확인 ifconfig nginx 설정 변경 sudo vi /etc/nginx/sites-available/default nginx 시작,재시작 sudo service nginx start sudo service nginx restart
ubuntu 서버에 Nginx 설치 최신으로 업데이트 leannet.tistory.com/43 Ubuntu 서버 최신 상태 유지 sudo apt-get update -y sudo apt-get dist-upgrade -y leannet.tistory.com Nginx 설치 sudo apt-get install nginx 서버 시작 sudo service nginx start 상태보기 sudo service nginx status 버젼 확인 nginx -v 재부팅 자동 실행 sudo systemctl enable nginx.service ubuntu 서버에 사용하는 LISTEN port확인 netstat -nap | grep LISTEN 너무 많이 나와서 내가 사용할 8398이 사용중인지 확인 netstat -nap | grep 8398 없..
ubuntu 서버에 node.js 15.X 설치 https://github.com/nodesource/distributions/blob/master/README.md nodesource/distributions NodeSource Node.js Binary Distributions. Contribute to nodesource/distributions development by creating an account on GitHub. github.com 깃에서 확인을 해보니 ubuntu 설치 방법이 나와 있다 아래 처럼 하면 된다. Node.js v15.x: # Using Ubuntu curl -sL https://deb.nodesource.com/setup_15.x | sudo -E bash - sudo apt-get install -y nodejs ..
Ubuntu 서버 최신 상태 유지 sudo apt-get update -y sudo apt-get dist-upgrade -y
VM에 ubuntu 20.04 LTS 설치 VMware에 ubuntu LTS 버젼을 설치하기 위해서 ubuntu 공식 사이트에 접속 한다. 'ubuntu.com/download/server Get Ubuntu Server | Download | Ubuntu Get Ubuntu Server one of three ways; by using Multipass on your desktop, using MAAS to provision machines in your data centre or installing it directly on a server. ubuntu.com 위에 페이지에 접속하고 option3을 선택 한다. 그런 뒤에 Download Ubuntu Server 20.04.1 LTS 를 눌러 라이브 서버를 다운을 받는다. VMware 에서 ..