목록유튜브컨텐츠탐색-StelLife (35)
안녕하세요
https://github.com/babel/babel/issues/11108 2023-02-21T08:33:11.345Z61.fc.1: > backend@1.0.0 start /app > node server.js (node:18) ExperimentalWarning: The ESM module loader is experimental. file:///app/node_modules/axios/lib/adapters/http.js:7 import {getProxyForUrl} from 'proxy-from-env'; ^^^^^^^^^^^^^^ SyntaxError: The requested module 'proxy-from-env' is expected to be of type CommonJS, whic..
https://github.com/nodejs/node/issues/37845 https://stackoverflow.com/questions/46745014/alternative-for-dirname-in-node-js-when-using-es6-modules Node.js 환경에서 ES6 문법을 사용할 때 그냥 __dirname을 가져올 수 없다. app.use(express.static(path.join(__dirname, "/frontend/build"))); ReferenceError: __dirname is not defined in ES module scope 이 에러는 ECMAScript 모듈 시스템에서 __dirname 변수를 사용할 때 발생할 수 있는 문제입니다. __dirname은 C..
목표: setInterval을 이용, 자동으로 일정 시간마다 새로 발견한 채널을 DB에 추가 1. 특정 시간에만 실행되는 함수를 Date() 를 이용하여 구현합니다. const checkTime = (callback) => { const currentTime = new Date(); if (currentTime.getMinutes() % 2 === 0) { callback() } }; => 위의 예시에서는 getMinutes() 메서드를 이용하여 짝수 분(minute)이라면 callback()을 실행합니다. 2. 실행할 함수 myFunction을 만듭니다. const myFunction = () => { (async () => { const testSearchResult1 = await getLatest..
Github에서 구현한 코드 보러가기 GitHub - youngentry/youtubeApiModule: youtube api 프로젝트 하면서 만든 기능 youtube api 프로젝트 하면서 만든 기능. Contribute to youngentry/youtubeApiModule development by creating an account on GitHub. github.com API Search 기능을 이용해 조건을 입력하고 검색하면 이용해보러 가기 검색 결과를 담은 JSON 데이터를 한 번에 최대 50개 items까지 받을 수 있다. 이렇게 받은 데이터 중에서 원하는 정보만 골라 일자별로 구분해보자. => 검색 결과를 ["YYYYMMDD", videoArray] 형태로 분류하여 => 이용하고 싶은 정..