묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결다양한 사례로 익히는 SQL 데이터 분석
마이그레이션 문의입니다.
현재 회사의 DB는 mysql로 되어있는데,제가 강의에서 배우는 Postgresql 과는 문법 차이가 있는거 같더라구요.mysql로 되어있는 문법들을 postgresql로 바꾸는것을 마이그레이션 이라고 하던데실습 강의를 배우면서회사 DB로 복습을 하려 합니다.mysql로 되어있는 것을 postgresql로 바꾸려면 어떻게 해야할까요?
-
미해결자바 ORM 표준 JPA 프로그래밍 - 기본편
@Query vs QueryDsl
@Query 내부적으로 문자로 JPQL을 적어야 하는 순간에는 무조건 QueryDsl로 type-safe하게 쿼리를 작성하고 있었습니다 이부분을 좀 생각해보니까SELECT DISTINCT t FROM Team t JOIN FETCH t.members WHERE t.id = :teamIdSELECT m FROM Member m JOIN FETCH m.team예시와 같은 간단한 쿼리들도 전부 QueryDsl로 옮기다보니까 굳이 @Query로 작성하지 않고 옮겨서 작성해야하나 라는 생각이 들었습니다 영한님의 경우 문자로 JPQL을 작성해야하는 순간은 전부 QueryDsl로 작성하시는지 궁금해서 질문을 남기게 되었습니다
-
미해결CS 지식의 정석 | 디자인패턴 네트워크 운영체제 데이터베이스 자료구조
마지막 표 오타
안녕하세요?강의 수강중에 마지막표에서 MVVM 패턴 밑에, V 와 VM 관계는 1 : n 관계라고 하셨는데요, n : 1 아닌가 해서요.감사합니다~
-
미해결다양한 사례로 익히는 SQL 데이터 분석
UTF-8 문제
안녕하세요, 파일 다운 받고 MySQL로 열었는데 위 이미지처럼 글자가 나오지 않아요. 어떻게 해야 하나요?
-
미해결데이터 분석 SQL Fundamentals
실행 순서 관련
-- 직원별 개별 상품 매출액, 직원별 가장 높은 상품 매출액을 구하고, 직원별로 가장 높은 매출을 올리는 상품의 매출 금액 대비 개별 상품 매출 비율 구하기 with temp_01 as ( select b.employee_id, a.product_id, sum(amount) as sum_by_emp_prod from order_items a join orders b on a.order_id = b.order_id group by b.employee_id, a.product_id)select employee_id, product_id, sum_by_emp_prod , max(sum_by_emp_prod) over (partition by employee_id) as sum_by_emp , sum_by_emp_prod/max(sum_by_emp_prod) over (partition by employee_id) as sum_ratiofrom temp_01order by 1, 5 desc; 위 쿼리의 실행 순서를 살펴 보았는데 맞는지 조언 얻고 싶습니다.order_items a와 orders b를 order_id로 join1의 결과를 employee_id로 group byselect b.employee_id, a.product_id select하여 temp_01 완성temp_01에서 employee_id, product_id, sum_by_emp_prod, sum_by_emp, sum_ratio를 select1, 5요인으로 desc 하여 order by 또 sum_ratio를 select 할 때 sum_by_emp를 사용하지 않고 max(sum_by_emp_prod) over (partition by employee_id)를 그대로 쓰는 이유가 궁금합니다
-
미해결스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술
웹 애플리케이션 이해 외의 강의 자료
[질문 템플릿]1. 강의 내용과 관련된 질문인가요? 예2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? 예3. 질문 잘하기 메뉴얼을 읽어보셨나요? 예[질문 내용]강의 자료가 '웹 애플리케이션 이해' 강의만 올려져있는데 다른 강의들이 누락된건지 아니면 해당 강의자료만 있는게 맞는지 문의드립니다.
-
미해결[스프링 배치 입문] 예제로 배우는 핵심 Spring Batch
예제 프로젝트
혹시 예제 프로젝트는 없는건가요,,,?
-
해결됨[코드캠프] 훈훈한 Javascript
for 반복문 질문 드립니다.
안녕하세요!알고리즘 21번 문제의 출력을 for 반복문을 사용하는 것으로 변경하고 싶었으나, 함수 사용 결과가 undefined로 출력되어 문의 드립니다.작성코드// 이번달은 며칠? 함수 만들기 function days(month) { if (month === 2) { //console.log(28); } else if (month <= 7 && month % 2 === 1) { //console.log(31); } else if (month >=8 && month % 2 === 0) { //console.log(31); } else { //console.log(30); } } // 1월 ~ 12월은 며칠인지 반복문을 이용하여 출력하기 for(let i = 1; i < 13; i++) { console.log(i + '월은 ' + days(i) + '일'); } 출력결과1월은 undefined일 2월은 undefined일 3월은 undefined일 4월은 undefined일 5월은 undefined일 6월은 undefined일 7월은 undefined일 8월은 undefined일 9월은 undefined일 10월은 undefined일 11월은 undefined일 12월은 undefined일반복문 내 days(i) 함수에 값이 할당되지 않는 것 것 같은데 이유를 알 수 있을까요? 감사합니다! :>
-
미해결호돌맨의 요절복통 개발쇼 (SpringBoot, Vue.JS, AWS)
vue3.js 배포는 혹시 예정에 있을까요??
혹시 vue3.js 배포 강의도 예정되어 있나요????
-
해결됨[코드캠프] 시작은 프리캠프
Live-server로 html 파일을 볼때 이상한 것들도 같이 보여요
hl-aria-live-container 가 무엇인가요??모든 div에 css를 적용 해서 그런것 같은데 선생님이 강의 진행 하실때는 왜 안나타난 걸까요??
-
미해결생산성을 향상시키는 스프링부트 기반의 API 템플릿 프로젝트 구현
AdminTestController 질문
안녕하세요. AdminTestController는 테스트 패키지로 구성하여 Mock객체로 테스트하지 않고 소스단 패키지로 구성하여 테스트 하시는 이유가 있으신지 문의 드립니다.
-
미해결Spring Cloud로 개발하는 마이크로서비스 애플리케이션(MSA)
인증에 대해서 질문드립니다.
안녕하세요 좋은 강의 감사드립니다.첫번째 질문 내용은 JWT로 로그인 인증 처리기능에 Refresh Token 기능을 추가하고 싶어서 기능 흐름을GateWay 필터에서 AUTHORIZATION 헤더에 토큰이 만료가 되면 user-service에 토큰 갱신 요청을 보내고 응답 받은 갱신된 accessToken과 refresh토큰을 client로 자동적으로 응답하려고 합니다.Refresh토큰을 적용했을 때 기능흐름이 이렇게 가는것이 맞을까요?두번째 질문은 GateWay 필터에서 accessToken이 만료되고 user-service에 토큰 갱신 요청에 응답을 받을때 Cloud는 비동기 방식이라 WebCliet를 사용해서 user-service에 요청을 보내는대 응답 받은 토큰 값을.block()을 이용해서 받으면 블록킹 코드를 사용할 수 없는 쓰레드란 에러가 뜹니다. 이럴때는 어떤 방식으로 인증서버에 리프레시 토큰 갱신 요청을 하는지 궁금합니다. 감사합니다.
-
미해결스프링 MVC 2편 - 백엔드 웹 개발 활용 기술
이미지업로드후 이미지 보이는 예제 연습중입니다
선생님 안녕하세요 다름아니라 파일업로드는 잘되는데 이미지가 보이지 않습니다. 확인해보니@ResponseBody @RequestMapping( value="/images/{fileName}" , method=RequestMethod.GET) public Resource imageDownload(@PathVariable String fileName) throws MalformedURLException { System.out.println( "fileName" + fileName); return new UrlResource("file:c:\\test\\upload\\" +fileName); } 이 부분에서 분명히 이미지파일은 확장자 포함하여 잘 나오는데 여기 콘솔에 출력한 부분에 확장자가 빠져 있습니다. 무엇을 놓쳤을까요? ㅠ 감사합니다
-
미해결[리뉴얼] React로 NodeBird SNS 만들기
import { createStore } from 'redux'; 에서 createStore 밑줄현상오류
(alias) function createStore<S, A extends Action<any>, Ext, StateExt>(reducer: Reducer<S, A>, enhancer?: StoreEnhancer<Ext, StateExt>): Store<S & StateExt, A> & Ext (+1 overload)import createStore@deprecatedWe recommend using the configureStore method of the @reduxjs/toolkit package, which replaces createStore.Redux Toolkit is our rec createStore 글자가 밑줄표시나고 적용이 안되는것인가요?버전은 6으로 명령어는 해논상태입니다. npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-slider@9.3.1 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-slider@9.3.1 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-steps@4.0.1 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-steps@4.0.1 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-table@7.8.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-table@7.8.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-textarea@0.2.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-textarea@0.2.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-motion@1.1.2 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-motion@1.1.2 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select up to date, audited 775 packages in 6s 81 packages are looking for funding run `npm fund` for details 15 vulnerabilities (2 low, 2 moderate, 10 high, 1 critical) To address issues that do not require attention, run: npm audit fix Some issues need review, and may require choosing a different dependency. Run `npm audit` for details. PS D:\react-zero\front> npm aduit Unknown command: "aduit" npm help npm ERR! Missing script: "aduit" npm ERR! npm ERR! To see a list of scripts, run: npm ERR! npm run npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\seolzone\AppData\Local\npm-cache\_logs\2022-12-16T14_31_32_875Z-debug-0.log PS D:\react-zero\front> npm -v 8.6.0 PS D:\react-zero\front> npm i next-redux-wrapper@6 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: @ant-design/react-slick@0.26.3 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: @ant-design/react-slick@0.26.3 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-pagination@2.4.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-pagination@2.4.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-picker@1.10.7 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-picker@1.10.7 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-slider@9.3.1 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-slider@9.3.1 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-steps@4.0.1 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-steps@4.0.1 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-table@7.8.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-table@7.8.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-textarea@0.2.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-textarea@0.2.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-motion@1.1.2 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-motion@1.1.2 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select up to date, audited 775 packages in 2s 81 packages are looking for funding run `npm fund` for details PS D:\react-zero\front> npm i next-redux-wrapper@6 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: @ant-design/react-slick@0.26.3 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: @ant-design/react-slick@0.26.3 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^0.14.0 || ^15.0.1 || ^16.0.0" from @ant-design/react-slick@0.26.3 npm WARN node_modules/antd4/node_modules/@ant-design/react-slick npm WARN @ant-design/react-slick@"~0.26.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-pagination@2.4.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-pagination@2.4.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-pagination@2.4.6 npm WARN node_modules/antd4/node_modules/rc-pagination npm WARN rc-pagination@"~2.4.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-picker@1.10.7 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-picker@1.10.7 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-picker@1.10.7 npm WARN node_modules/antd4/node_modules/rc-picker npm WARN rc-picker@"~1.10.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-slider@9.3.1 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-slider@9.3.1 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-slider@9.3.1 npm WARN node_modules/antd4/node_modules/rc-slider npm WARN rc-slider@"~9.3.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-steps@4.0.1 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-steps@4.0.1 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-steps@4.0.1 npm WARN node_modules/antd4/node_modules/rc-steps npm WARN rc-steps@"~4.0.1" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-table@7.8.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-table@7.8.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-table@7.8.6 npm WARN node_modules/antd4/node_modules/rc-table npm WARN rc-table@"~7.8.0" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-textarea@0.2.6 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-textarea@0.2.6 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-textarea@0.2.6 npm WARN node_modules/antd4/node_modules/rc-textarea npm WARN rc-textarea@"~0.2.2" from antd4@4.4.0 npm WARN node_modules/antd4 npm WARN 1 more (rc-mentions) npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-motion@1.1.2 npm WARN Found: react@18.2.0 npm WARN node_modules/react npm WARN peer react@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 59 more (@ant-design/react-slick, @rc-component/portal, antd, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN npm WARN Conflicting peer dependency: react@16.14.0 npm WARN node_modules/react npm WARN peer react@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: rc-motion@1.1.2 npm WARN Found: react-dom@18.2.0 npm WARN node_modules/react-dom npm WARN peer react-dom@">=16.0.0" from @ant-design/icons@4.8.0 npm WARN node_modules/@ant-design/icons npm WARN @ant-design/icons@"^4.7.0" from antd@4.24.5 npm WARN node_modules/antd npm WARN 2 more (antd4, the root project) npm WARN 50 more (@rc-component/portal, antd, antd4, rc-dropdown, ...) npm WARN npm WARN Could not resolve dependency: npm WARN peer react-dom@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select npm WARN npm WARN Conflicting peer dependency: react-dom@16.14.0 npm WARN node_modules/react-dom npm WARN peer react-dom@"^16.0.0" from rc-motion@1.1.2 npm WARN node_modules/antd4/node_modules/rc-select/node_modules/rc-motion npm WARN rc-motion@"^1.0.1" from rc-select@11.0.13 npm WARN node_modules/antd4/node_modules/rc-select up to date, audited 775 packages in 8s 81 packages are looking for funding run `npm fund` for details 15 vulnerabilities (2 low, 2 moderate, 10 high, 1 critical) To address issues that do not require attention, run: npm audit fix Some issues need review, and may require choosing a different dependency. Run `npm audit` for details.라고 터미널에 찍힙니다 흠
-
미해결스프링 시큐리티
loginPage 리다이렉션 루프 문제
수원님 안녕하세요! 강의대로 진행하면loginPage에서 리다이렉션 루프에 빠지게 됩니다. http .authorizeRequests() // 요청에 대한 보안 검사 .antMatchers("/loginPage").permitAll() // 어떤 요청도 허용 .anyRequest().authenticated(); // 어떤 요청에도 인증을 받음 위 내용을 추가해야 할 것 같습니다. 감사합니다.
-
미해결설계독학맛비's 실전 Verilog HDL Season 1 (Clock부터 Internal Memory까지)
vivado 설치 후 root@~~: 이게 안뜨네요??
- 강의 내용외의 개인 질문은 받지 않아요. (개인 과제, 영상과 다른 접근방법 후 디버깅 요청, 고민 상담 등..)- 저 포함, 다른 수강생 분들이 함께보는 공간입니다. 보기좋게 남겨주시면 좋은 QnA 문화가 될 것 같아요. (글쓰기는 현업에서 중요한 능력입니다!)- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요. vivado 설치 후 root@~~: 이게 안뜨네요??제가 프로그래밍이 익숙하지 않아 기초적인 것이지만 여쭤봅니다이거 뜨게 하려면 어떻게 해야 하나요?
-
미해결프로젝트로 배우는 React.js
json-server 용어가 cmdlet, 함수 ~~ 인식되지 않습니다.(npm i json-server -g 로 하면 해결됨)
json-server를 설치하여 사용할 때 다음과 같은 에러메시지가 떠서 구글링을 통해 여러가지 방법들을 시도해봤습니다.그 중 install 을 글로벌로 하면 해결된다고 해서 해결은 했는데에러메시지가 표출된 원인과 왜 global로 설치하면 해결되는지가 궁금합니다.답변부탁드립니다
-
해결됨홍정모의 따라하며 배우는 C++
7.9함수포인터_1:15 cout << func << endl;
안녕하세요, 강의를 보다가 질문 올립니다.강의 내용 중int func() { return 5; } int main() { cout << func << endl; return 0; }이 부분에서 주소값을 출력했는데요저 같은 경우warning: address of function 'func' will always evaluate to 'true' 라는 경고 메시지와 함께1 이라는 값이 출력되었습니다.이후 &func, *func, func() 모두 같은 방법으로출력했더니 func() 만 5, 나머지는 1이 출력되었어요.즉 저는 함수의 주소값으로 출력되지 않는데그냥 버전의 이유일까요 ? m1 MacOs g++17 입니다. 강의 내용과 반대로 쓰레기값이 나온다거나또는 쓰레기값이 나와야하는데 0이 나온다거나이런 경우가 몇 번 있더라구요
-
미해결처음 배우는 리액트 네이티브
안녕하세요, 강의 잘 들었습니다 :) RN과 파이어베이스 관련해서 질문드릴게 있습니다!
- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 코드는 깃헙에 올리고 깃헙 주소를 함께 남겨주세요.- 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.먼저 친절하고 꼼꼼한 강의 감사드립니다. 강의처럼 expo와 파이어베이스를 이용해서 모바일 앱을 만들어보려고 공부 중입니다. 본 강의에서는 expo를 사용하면서 파이어베이스 JDK를 사용하는데요, expo docs 파이어베이스 섹션에는 react-native-firebase 라이브러리를 사용할 수 있다고 안내가 되어 있어서 질문 드립니다. react-native-firebase 라이브러리를 사용하면 애널리틱스 뿐만 아니라 crashlytics, 동적 링크 등을 사용할 수 있다고 안내가 되고 있는데요, 이런 기능들의 사용을 위해서는 개발 툴로 expo go가 아니라 커스텀 가능한 dev-client를 설치해 사용하라고 권장하고 있습니다. expo에서 dev-client를 사용하는 목적은 불필요한 expo 모듈을 제거해 용량을 줄이고 RN-CLI처럼 네이티브 의존성 라이브러리와 모듈을 제어할 수 있다고 하는데요. 여기서 질문 드릴 점은,1) 애널리틱스 기능과 같은 파이어베이스의 서비스를 웹이 아닌 모바일앱에서도 온전히 사용하려면 현업의 개발자들은 react-native-firebase 라이브러리를 반드시 사용하고 있나요?2) dev-client와 기존 eject 명령을 대체하는 prebuild를 이용하면, expo의 매니지드 워크플로우를 따르고 있어도 네이티브 환경을 커스텀할 수 있다고 합니다. 그런데 이 부분이 명확히 이해가 안 됩니다.. 그저 네이티브 의존성인 RN라이브러리를 expo에서도 사용할 수 있다는 건지, xcode나 안드로이드 스튜디오에서 네이티브 코드를 직접 짜 넣을 수 있는지 구글, 스택오버플로등에 검색해도 잘 나오지 않는데요.. 특히 위젯 기능 같은 경우는 RN으로 구현할 수 없고 네이티브 소스를 직접 짜야하는데 그러려면 반드시 RN-CLI로 가야 하는지 아니면 dev-client + prebuild를 사용할 수 있는지.. 강의 범위를 조금 넘어선 질문일 수도 있지만 이 부분도 여쭈어봅니다.좋은 강의와 교재 감사드립니다.!:)
-
해결됨따라하며 배우는 노드, 리액트 시리즈 - 레딧 사이트 만들기(NextJS)(Pages Router)
데이터가 안받아와집니다..ㅠ
getSub의 api에서 sub까지는 잘 나옵니다.그러나 res.json(sub)으로 보내주고 axios를 통해 받아서 res.data를 확인해보면 false라는 값이 옵니다 어떻게 해야할까요...