일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- Laravel
- chatGPT
- NextJS
- netfunnel
- CSS
- exceljs
- Kaikas
- PM2
- metamask
- nginx
- Setting
- polygon
- threejs
- nodejs
- React
- Remix
- node
- 라라벨
- miniconda
- 공연티켓
- pagination
- 회고
- 오블완
- 배포
- jquery
- nft
- 블록체인
- 티스토리챌린지
- Ai
- Today
- Total
목록node (7)
박주니 개발 정리
1. nodemailer 공식문서에 코드를 기본 form으로 진행합니다. https://nodemailer.com/about/ Nodemailer :: Nodemailer Nodemailer Nodemailer is a module for Node.js applications to allow easy as cake email sending. The project got started back in 2010 when there was no sane option to send email messages, today it is the solution most Node.js users turn to by default. npm i nodemailer.com "use strict"; const nodemailer..
설명 이유) 노드 모니터링을 진행할 때 저는 pm2로 설정해서 vagrant 접속했을 때 설정한 함수가 계속 모니터링을 진행하기 위해 설정했습니다. laravel에서 스케줄러를 진행하기 위해 crontab을 진행한 것처럼 node에서는 pm2를 활용했습니다. 1. vagrant 환경에서 sudo npm install pm2 -g를 진행합니다. 2. pm2 list를 입력하셔서 해당 이미지처럼 나오는 지 확인합니다. 3. pm2 start [실행 파일]을 입력해서 노드 모니터링을 진행할 파일을 연결합니다. 4. pm2 log를 하셔서 로그가 정상 작동되는 지 확인합니다. tip) pm2 stop all - pm2 실행된 파일 전체를 멈춥니다. pm2 restart all - pm2 리스트 파일 모니터링을 ..