일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- security
- spring3
- centos7
- javascript
- git
- config
- spring
- mysql
- MariaDB
- Next.js
- MSsql
- popup
- Maven
- Eclipse
- NextJS
- SpringBoot
- jenkins
- docker
- mybatis
- post
- yona
- console
- nodejs
- rocky9
- Java
- node.js
- ajax
- submit
- PM2
- jquery
- Today
- Total
목록NextJS (5)
ふたりで
날짜 비교를 해서 기준 일시보다 클 경우 예외 처리를 하는 로직을 만들었다.아래와 같다. // 현재 날짜 및 시간 가져오기 const currentDateTime = new Date(); // 쿼리 실행 const selectResult = await pool.request() .query(query); const qrlimitdate = selectResult.recordset[0].di_qr_limit_date; //날짜 및 시간 비교하여 체크후 제한시간보다 초과면 예외처리. console.log("currentDateTime:",currentDateTime,",qrlimitdate:",qrlimitd..
nextJS 프로젝트를 pm2 cluster 모드로 구동시켜 보기.해당 글은 아래의 링크를 참조하여 작성되었습니다.https://pm2.keymetrics.io/docs/usage/cluster-mode/ PM2 - Cluster ModeAdvanced process manager for production Node.js applications. Load balancer, logs facility, startup script, micro service management, at a glance.pm2.keymetrics.io# 프로젝트 환경은 다음과 같다.- nextjs v14- nodejs v20- rocky9 linux- pm2 v5 # pm2로 nextjs 앱을 구동시키는 명령어에 따라 cluste..
firebase를 통해 전송온 push메시지를 nextJS 웹앱에서 받아서 표시를 해보자.구글에 많이 돌아다니는 예제들을 보고 따라 해 봤는데 구현하는 방식들이 제각 각이라참고하기가 참 힘들었다.다른 것보다 nextJS에서 라우팅을 어떤 방식으로 처리했냐에 따라서 제각각이었다.결국 chetGPT3.5의 힘만 빌려 구현을 하였다.생각보다 간단??? 했다. #환경.- nextJS 1.4 (page 라우팅 기준)- nodeJS 20.11.0참고: 이전에 토이 프로젝트로 PWA를 적용했던 프로젝트에 Fcm Push message 기능만 추가를 하였다.https://graykang.tistory.com/entry/nextJS-14-PWA-%EC%84%A4%EC%A0%95 nextJS 14 + PWA 설정.next..
nextJS14 버전의 공식 홈의 튜토리얼 프로젝트에 PWA를 설정해 보았다.예전에 VueJS 프로젝트에 PWA를 적용하는 방법을 정리한 적이 있는데 그것보다 훨씬 간단한 것 같다. 1. react nextJS 튜토리얼 앱 프로젝트 생성.npx create-next-app@latest nextjs-dashboard --use-npm --example "https://github.com/vercel/next-learn/tree/main/dashboard/starter-example"원하는 경로에 nextjs-dashboard라는 폴더를 생성하고 해당 폴에 Github의 튜토리얼 프로젝트를 clone 한다.프로젝트 설정이 이미 되어 있기 때문에 종속성 설치는 하지 않는다.참고: https://nextjs.o..
1. nvm 스크립트 설치. ]# wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash 2. source ~/.bash_profile 실행하여 스크립트 적용. ]# source ~/.bash_profile 3. 설치할 node 버전 검색 [root@localhost ~]# nvm list-remote v0.1.14 v0.1.15 v0.1.16 v0.1.17 . . . . v18.10.0 v18.11.0 v18.12.0 (LTS: Hydrogen) v18.12.1 (LTS: Hydrogen) v18.13.0 (LTS: Hydrogen) v18.14.0 (LTS: Hydrogen) v18.14.1 (LTS: Hydro..