CloudFlare) Cloud Stream
2023. 4. 1. 21:22
Frontend/프론트 라이브러리
Cloud Stream 특징 recording으로 리플레이 가능하게 함 이벤트 끝나고도 다른 사람이 이벤트를 실행 가능 썸네일을 만들어줌 simulcast 트위치나 유튜브에 업로드 할 수 있음, 즉 여러 플랫폼에서 스트리밍 가능 가격 라이브 라이브 송출이 1000분의 1달러 파일 무게 아님 스트리밍 길이 아님 시청하는 사람들에 대한 것이 1000분에 1분 저장 1000분 저장에 5달러 *510달러는 다른 회사 기준 필요한 software OBS Studio 영상 녹화와 실시간 방송을 할 수 있는 무료 및 공개 소프트웨어입니다. 윈도우, 맥 혹은 리눅스 환경에서 빠르고 쉽게 방송 할 수 있습니다. https://obsproject.com/ko Live Now - Live Stream https://play..
ReactJS) 글쓰기-유저가 여러번 클릭 막기/ router.query가 null 인 경우/ +id.toString() 하는 이유/데이터 베이스 날짜, 시간 렌더링
2023. 2. 22. 11:07
Frontend/React & React.Native &Next.js
글쓰기-유저가 여러번 클릭 막기 const onValid = (data) =>{ // 유저가 여러번 클릭하는 거 막기 위한 것 if(loading) return ; test(data) } router.query가 null 인 경우 상세페이지에서는 router.query가 null일 수 있다 null이면 error를 받기 떄문에 null 페이지로 갈 수 있다 const { data, error } = useSWR(router.query.id ? `/api/test/${router.query.id}` : null) +id.toString() 하는 이유 const post = await client.test.findUnique({ where: { // id가 배열로 들어올 수 있고, 저장할떄는 숫자로 해야해서..
Flutter ) install
2023. 2. 17. 12:50
Frontend/Dart & Flutter
install 플러터 설치 공식 설치 Install Install Flutter and get started. Downloads available for Windows, macOS, Linux, and Chrome OS operating systems. docs.flutter.dev 더 쉬운 설치 brew install --cask flutter 시뮬레이터 설치 IOS와 안드로이드 스튜디오 설치 확인 터미널에 flutter doctor 옳은 화면 문제 해결 안드로이드 설치한 후 명령어 flutter doctor --android-licenses IOS 두개 명령어 치기 홈페이지로 이동 홈페이지대로 아래 명령어 치기 sudo gem install cocoapods 완료
TypScripti) 특정 값 배열 타입, 인자, 파라미터 안에 any인 불특정 인자
2023. 2. 17. 00:05
Frontend/HTML, CSS, DOM, jQuery
특정값 배열 type method = "GET" | "POST" | "DELETE" interface ConfigType{ method: method[], } any 타입의 req.method method.includes(req.method as any)