What I Learned/SpartaCodingClub
[내일배움캠프] 2023-01-20 TIL
Interrobang
2023. 1. 20. 13:45
VSC-THUNDER CLIENT의 Collections 사용
문제점
프로젝트마다 계속 마구잡이로 사용하면서 activity가 정리가 안 됨
해결
Collections 기능 활용
알게 된 점
프로젝트별로 아래와 같이 관리할 수 있다.
Collection Settings에서 Base Url을 설정하면 각 Activity에서 중복되는 해당 Base Url 부분을 입력할 필요가 없다.
타입스크립트 5일차
문제점
강의를 모두 듣고 아래 사이트를 보며 추가 과제 수행 중 CORS에러 발생
Node.js and TypeScript Tutorial: Build a CRUD API
Learn how to use TypeScript to build a feature-complete Express API. Learn how to use TypeScript with Express to create, read, update, an...
auth0.com
해결
cors 모듈 설치로 쉽게 해결했다.
npm i cors
모듈 설치 후에는 index.ts에 아래 두 코드를 추가한다.
import cors from "cors";
app.use(cors());