일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CSS
- 1일1코테
- 코테공부
- js
- next.js 에러
- 프로그래머스 알고리즘
- Redux-Toolkit
- 코테준비
- 알고리즘공부
- 코딩테스트
- 프로그래밍
- html
- next.js
- 코테스터디
- 알고리즘스터디
- 프로그래머스코딩테스트
- 프로그래머스코테
- 프로그래머스 Lv.0
- 알고리즘문제
- 프로그래머스 코테
- mysql
- 자바스크립트
- 프로그래머스알고리즘
- 프로그래머스 코딩테스트
- 개발자
- 프로그래머스 레벨0
- 코딩
- 정보처리기사
- 프로그래머스
- 정처기기출
- Today
- Total
목록분류 전체보기 (186)
계발하는 개발자
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bLB7GZ/btsth8wMoT3/qFqyqM1SVnnF3oZOy8EYt1/img.png)
참고 Using jest in my react app, describe is not defined I am new to jest and trying to figure out some basic stuff in my following code import * as actions from './IncrementalSearchActions'; describe('Incremental Search Actions', () => { it('Sh... stackoverflow.com 에러 Jest를 사용할 때 describe, it, expect를 따로 import하지 않아도 된다고 들었는데, 자꾸 인식되지 않는다는 메시지가 떠서 당황..😓 원인 Jest를 사용할 때 'describe', 'it', 'expect'는 ..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/lsVgs/btssMF3akPH/XPGMmIeVaQr50kCDX6vcu0/img.png)
REST란? REST는 Representational State Transfer의 약자로 직역하면 "대표로 상태를 전송하는 것"이다. 한 마디로 "데이터 이름으로 상태를 구분하여 (서버와 클라이언트 간)상태에 대한 정보를 주고받는 방식" 이다. 예를 들자면 아래와 같다. 데이터의 이름 "이거 회원에 대한 데이터야" -> /member (멤버라고 이름을 지어 회원 데이터라고 알려줌) 상태 "나 데이터 생성할거야" -> /create (데이터를 생성한다고 알려줌) 전송 "회원 데이터 생성해줘" -> /create/member (회원 데이터를 생성해 달라고 요청함) 이와 같이 데이터의 이름으로 상태를 구분하여 적절한 응답을 전송하는 방식이다. API란? API란 Application Programming In..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bhDjRF/btssQaOP0NZ/9Xl8k5xnkV21JIktG0ArGK/img.png)
참고 Rendering: Client Components | Next.js Using App Router Features available in /app nextjs.org TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it I created a brand new Next.js application that uses the app folder. I then installed Materiel UI and started using the example given on the doc. But I'm getting this error: TypeEr..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/t5U7a/btssTmAI7K6/pLtbCU1Mt9Z10USIrtVEK1/img.png)
참고 https://stackoverflow.com/questions/49056000/all-of-my-json-files-have-problems-loading-reference-schema-from-schemastore-az 에러 타입스크립트 파일에서 styled-components로 스타일을 지정하고 새로 빌드하려는데 갑자기 package.json 파일에 문제가 있다고 했다. 문제 부분에서 problems loading reference 'https //json.schemastore.org/package' 원인 package.json 파일에서 JSON 스키마를 로드하지 못해서 발생한 오류였다. 참고로 JSON 스키마는 JSON 데이터의 유효성을 검사하고 구조를 정의하는 데 사용된다. 해결 vscod..