'--isolatedModules' 에러 해결방법
·
Web/Error 해결
Typescript 파일을 만들어 두고 npm run start를 통해서 App을 실행하게 되면 다음과 같은 에러가 발생한다. TS1208: 'ㅁㅁㅁㅁ.tsx' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module. 단지 빈 페이지로 있어서 오류가 난 것이므로 export {} 를 입력하면 에러 해결됩니다 별게 다 에러네
GitHub API rate limit (요청한도) 늘리기
·
Web/Error 해결
깃헙 api를 사용해서 github finder를 만들고 있었는데 잘만 되던 검색이 막혀서 크롬 devTools(개발자 도구)를 살펴봤는데 { "message": "API rate limit exceeded for --내 ip--. (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)", "documentation_url": "https://docs.github.com/rest/overview/resources-in-the-rest-api#rate-limiting" } 같은 ip로 여러번 검색하게 되면 limit가 걸리는지 제한이 걸려서 안 ..