디시인사이드 갤러리

마이너 갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

[질문] 급1식인데 react 프로젝트 뭐가 문제일까요..

ㅇㅇ(49.168) 2024.05.06 18:28:27
조회 506 추천 0 댓글 11
														


24b0d121e09c28a8699fe8b115ef046f5d4e


import React from 'react';
import * as ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

const express = require("express");
const dotenv = require("dotenv");
const cors = require("cors");
const axios = require("axios");

const router = require("./routes")

const app = express();

const root = ReactDOM.createRoot(document.getElementById("root"));

dotenv.config();
app.use(express.json());
app.use(
cors({
origin: "https://localhost:3000",
methods: ["GET", "POST"],
credentials: true,
})
);
// dotenv zlib querystring path crypto fs stream zlib crypto http net
app.use('/auth', router);

app.listen(process.env.PORT, ()=>{
console.log(`server is on ${process.env.PORT}`);
});

root.render(<App />);
reportWebVitals();


Create-React-App로 리액트 빌드 했는데


index.js에서 주석해둔


// const express = require("express");
// const dotenv = require("dotenv");


이 두 코드의 주석들을 없애면



ERROR in ./src/index.js 11:15-32
Module not found: Error: Can't resolve 'dotenv' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\src'
ERROR in ./node_modules/body-parser/lib/read.js 19:11-26
Module not found: Error: Can't resolve 'zlib' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\body-parser\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "zlib": require.resolve("browserify-zlib") }' - install 'browserify-zlib' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "zlib": false }
ERROR in ./node_modules/body-parser/lib/types/urlencoded.js 201:12-34
Module not found: Error: Can't resolve 'querystring' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\body-parser\lib\types' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "querystring": require.resolve("querystring-es3") }' - install 'querystring-es3' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "querystring": false }
ERROR in ./node_modules/content-disposition/index.js 21:15-39
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\content-disposition' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/cookie-signature/index.js 5:13-30
Module not found: Error: Can't resolve 'crypto' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\cookie-signature' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "crypto": require.resolve("crypto-browserify") }' - install 'crypto-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "crypto": false }
ERROR in ./node_modules/destroy/index.js 15:17-41
Module not found: Error: Can't resolve 'fs' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\destroy'
ERROR in ./node_modules/destroy/index.js 16:13-30
Module not found: Error: Can't resolve 'stream' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\destroy' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "stream": require.resolve("stream-browserify") }' - install 'stream-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "stream": false }
ERROR in ./node_modules/destroy/index.js 17:11-26
Module not found: Error: Can't resolve 'zlib' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\destroy' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "zlib": require.resolve("browserify-zlib") }' - install 'browserify-zlib' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "zlib": false }
ERROR in ./node_modules/etag/index.js 20:13-30
Module not found: Error: Can't resolve 'crypto' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\etag' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "crypto": require.resolve("crypto-browserify") }' - install 'crypto-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "crypto": false }
ERROR in ./node_modules/etag/index.js 21:12-31
Module not found: Error: Can't resolve 'fs' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\etag'
ERROR in ./node_modules/express/lib/application.js 22:11-26
Module not found: Error: Can't resolve 'http' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "http": require.resolve("stream-http") }' - install 'stream-http' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "http": false }
ERROR in ./node_modules/express/lib/application.js 29:14-37
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/express/lib/request.js 17:11-30
Module not found: Error: Can't resolve 'net' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib'
ERROR in ./node_modules/express/lib/request.js 19:11-26
Module not found: Error: Can't resolve 'http' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "http": require.resolve("stream-http") }' - install 'stream-http' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "http": false }
ERROR in ./node_modules/express/lib/response.js 20:11-26
Module not found: Error: Can't resolve 'http' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "http": require.resolve("stream-http") }' - install 'stream-http' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "http": false }
ERROR in ./node_modules/express/lib/response.js 23:11-26
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/express/lib/utils.js 23:18-40
Module not found: Error: Can't resolve 'querystring' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "querystring": require.resolve("querystring-es3") }' - install 'querystring-es3' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "querystring": false }
ERROR in ./node_modules/express/lib/view.js 16:11-26
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/express/lib/view.js 17:9-22
Module not found: Error: Can't resolve 'fs' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\express\lib'
ERROR in ./node_modules/mime-types/index.js 15:14-37
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\mime-types' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/mime/mime.js 1:11-26
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\mime' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/mime/mime.js 2:9-22
Module not found: Error: Can't resolve 'fs' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\mime'
ERROR in ./node_modules/parseurl/index.js 14:10-24
Module not found: Error: Can't resolve 'url' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\parseurl' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "url": require.resolve("url/") }' - install 'url' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "url": false }
ERROR in ./node_modules/safe-buffer/index.js 3:13-30
Module not found: Error: Can't resolve 'buffer' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\safe-buffer' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "buffer": require.resolve("buffer/") }' - install 'buffer' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "buffer": false }
ERROR in ./node_modules/safer-buffer/safer.js 5:13-30
Module not found: Error: Can't resolve 'buffer' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\safer-buffer' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "buffer": require.resolve("buffer/") }' - install 'buffer' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "buffer": false }
ERROR in ./node_modules/send/index.js 22:9-22
Module not found: Error: Can't resolve 'fs' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\send'
ERROR in ./node_modules/send/index.js 27:11-26
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\send' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/send/index.js 29:13-30
Module not found: Error: Can't resolve 'stream' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\send' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "stream": require.resolve("stream-browserify") }' - install 'stream-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "stream": false }
ERROR in ./node_modules/send/index.js 30:11-26
Module not found: Error: Can't resolve 'util' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\send' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "util": require.resolve("util/") }' - install 'util' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "util": false }
ERROR in ./node_modules/serve-static/index.js 18:14-37
Module not found: Error: Can't resolve 'path' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\serve-static' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "path": require.resolve("path-browserify") }' - install 'path-browserify' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "path": false }
ERROR in ./node_modules/serve-static/index.js 20:10-24
Module not found: Error: Can't resolve 'url' in 'C:\Users\jumin\Desktop\ItsYourBirthDay\birthday\node_modules\serve-static' BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. Verify if you need this module and configure a polyfill for it. If you want to include a polyfill, you need to: - add a fallback 'resolve.fallback: { "url": require.resolve("url/") }' - install 'url' If you don't want to include a polyfill, you can use an empty module like this: resolve.fallback: { "url": false }


이런 에러가 와장창 뜨더라구요

// const express = require("express");
// const dotenv = require("dotenv");


얘들이 node_modules에서 오는거 같아서

node_modules 지웠다가 npm install 다시 해봐도 똑같구요

webpack.config.js도 만들어서 시도 해봤는데 실패했어요

facebook 소셜 로그인 기능 구현 해보려고

Aouth2.0 공부중이였는데 2시간째 이 버그 때문에 공부를 못하고 있어요..

뭐가 문제일까요..ㅠ


추천 비추천

0

고정닉 0

3

원본 첨부파일 1

댓글 영역

전체 댓글 0
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 말머리 제목 글쓴이 작성일 조회 추천
- 설문 끝까지 다 본 걸 후회하게 만든 용두사미 드라마는? 운영자 25/07/07 - -
- AD 디지털 액세서리 기간한정 세일! 운영자 25/07/11 - -
81865 % 개발자들을 위한 노래 추천 (팔황단 - 첫겨울) [1] ㅇㅇ갤로그로 이동합니다. 07.01 792 0
81864 % 갤 망한거 인정할껀 인정하고. 퇴물(180.68) 07.01 2209 15
81863 % 오늘 진짜 레전드 바보짓함 [3] ㅇㅇ갤로그로 이동합니다. 07.01 613 2
81861 % 제미나이가 가끔식 잭팟 터트려서 좋음 [2] ㅇㅇ갤로그로 이동합니다. 07.01 1377 1
81857 % 아니시발 화면새파란데 왜이럼이거 [7] ㅇㅇ(211.224) 07.01 883 0
81855 % 네카라쿠배에서 배민이 가장 구려보이노 [1] ㅇㅇ갤로그로 이동합니다. 07.01 952 1
81854 % 바이브코딩 ㄹ황 [11] 미쿠쟝마지스키갤로그로 이동합니다. 07.01 2562 24
81853 % 개발 좆밥이 nodejs 기반 was 에 궁금한 점이 있어요 [9] ㅇㅇ(223.38) 07.01 1143 0
81848 % 러스트 2년 써보고 느낀점 [4] ㅇㅇ(106.101) 07.01 733 0
81847 % wayland는 여러모로 대단해.... [1] ㅇㅇ(45.90) 07.01 483 0
81845 % 오늘 알라딘 중고서점에서 주운 책 [1] ㅇㅇ(211.235) 07.01 1946 1
81839 % ㅅㅂ 회사 바꿔보려고 했는데 실수를 해버려서 못바꿨다 [4] dd(49.172) 07.01 1168 2
81838 % c++은 코드 읽는게 너무 고역이다 [1] ㅇㅇ(118.235) 07.01 571 1
81837 % 깃허브 잔디로 그림그리는 놈 보면 어떤 기분듬 [1] ㅇㅇ갤로그로 이동합니다. 07.01 446 0
81835 % 깃갤 간만에왓는데 여기 완전히 망했구나 탄소배출컨테이너공장갤로그로 이동합니다. 07.01 306 0
81834 % AI에서 프론트는 어려운게 퍼블리싱이나 api 요런거보다 [5] ㅇㅇ(116.127) 07.01 2474 0
81833 % 공유기 새로 샀다. [7] 퇴물(180.68) 07.01 462 6
81832 % 딱국 '그 보석새끼' 한컴빌런 무말랭 요런애들은 병신할당제 있나 [7] 미쿠쟝마지스키갤로그로 이동합니다. 07.01 2863 11
81829 % 깃허브 망한듯 [3] ㅇㅇ갤로그로 이동합니다. 06.30 693 1
81827 % 드래곤책에 오토마타 자세히 나오나요 ㅇㅇ(211.47) 06.30 671 0
81825 % 프론트는 이제 완전 망한듯 [8] ㅇㅇ(59.26) 06.30 917 0
81820 % 프론트 채용공고수 처참하네 [1] ㅇㅇ갤로그로 이동합니다. 06.30 607 0
81819 % 뤼튼 광고 존나 잘했네 ㅋㅋㅋㅋ [1] ㅇㅇ(211.235) 06.30 758 0
81818 % 뤼튼까지마라.. 삼촌좌 회사다 [2] 미쿠쟝마지스키갤로그로 이동합니다. 06.30 879 0
81817 % 요새 영화 시작 전에 뤼튼 광고 나오던데 존나 구리긴 함 [7] FionaApple갤로그로 이동합니다. 06.30 8528 49
81816 % 유튭에 뤼튼광고 그만했으면좋겠다 [2] ㅇㅇ(223.39) 06.30 1315 7
81815 % 님들 개인정보 보호법 다 지킴? [3] ㅇㅇ(118.235) 06.30 288 1
81814 % 자짤 뺏은거 ㅈㄴ웃기네 ㅇㅇ(223.28) 06.30 257 2
81810 % 좆소개발자 5년하다 공무원 전직함 질문받는다 [8] ㅇㅇ(122.42) 06.30 1083 17
81809 질문 포폴용 프로젝트에 AI쓰는거 회사에서 인식이 어떤가요? [14] ㅇㅇ(39.7) 06.30 658 0
81807 % 코딩할때 듣기좋은 노래 [10] ㅇㅇ(180.16) 06.30 430 0
81806 % 4년째하던 프로젝트 개발팀 접는다 ㅇㅅㅇ [3] ㅇㅇ(116.127) 06.30 729 3
81805 % CSRF => 씨설프 [7] ㅇㅇ갤로그로 이동합니다. 06.30 598 0
81802 % 깃갤 오랜만에 구경하려 와봤는데 느낌이 많이 달라졌네 [6] ㅇㅇ(121.167) 06.30 2053 15
81801 % it 계열 구인배수 창났길래 다른 곳 봤는데 [6] ㅇㅇ(110.70) 06.30 1595 0
81796 % drizzle orm 참 좋은데 [3] 엘리시아JS갤로그로 이동합니다. 06.30 1139 2
81794 % 요즘 mz들 왜이러냐? [13] ㅇㅇ(118.235) 06.30 1612 14
81793 % 요즘 프론트 퍼블리싱 왜케 못하냐 [1] ㅇㅇ(59.26) 06.30 369 0
81789 % 백엔드 3년정도 했는데 프론트로 전향하는거 어케생각함 [6] ㅇㅇ(61.110) 06.29 613 0
81786 % o3 + 클로드코드 = 정답 [3] ㅇㅇ(14.35) 06.29 689 0
81784 질문 프론트 + 백 모노레포에서 di 패턴 [1] 약팔이아님갤로그로 이동합니다. 06.29 723 0
81783 % gpt 언제 써야하는지 딱 알았다 [3] ㅇㅇ갤로그로 이동합니다. 06.29 700 19
81781 % 컴파일러 책 추천 좀 [3] ㅇㅇ(222.107) 06.29 865 0
81780 % 리액트는 왤케 재미가 없지 [19] ㅇㅇ갤로그로 이동합니다. 06.29 493 0
81779 % 아 c# 좆같네 [8] ㅇㅇ(121.129) 06.29 360 3
81778 질문 쿠버네티스 헬름차트들 현업에선 어케 관리함? [1] ㅇㅇ(175.125) 06.29 187 0
81777 % 갓직히 하드웨어 성능 개쩔고 앞으로 더 쩔어줄텐디 [4] ㅇㅇ(223.38) 06.29 558 1
81776 % 파이썬식 추상화는 대가로 지불하는게 좀 많아서 [3] ㅇㅇ(121.175) 06.29 589 4
81772 % typescript쓰는 사람 있음? [4] ㅇㅇ(222.238) 06.29 430 0
81770 % 파이썬은 생각보다 더 위대한 언어야 [1] ㅇㅇ(1.231) 06.29 617 4
뉴스 Mnet '보이즈 2 플래닛' 제작진이 밝힌 글로벌로 확장된 최정상 향한 월드 스케일 데뷔 프로젝트 승부수는? 디시트렌드 07.11
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2