๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
  • What would life be If we had no courage to attemp anything?
Development/Electron

[Electron] electron์•ฑ ํ™”๋ฉด์ด ๋žœ๋”๋ง์ด ๋˜์ง€ ์•Š๋Š” ๋ฌธ์ œ

by DevIseo 2023. 6. 18.

๋ฌธ์ œ์ 

2023.06.17 - [Development/Electron] - [Electron] SyntaxError: Cannot use import statement outside a module

์œ„์˜ ์˜ค๋ฅ˜๋ฅผ ํ•ด๊ฒฐ ํ›„ electron์•ฑ์„ ์‹คํ–‰ํ–ˆ์„ ๋•Œ, electron ์•ฑ์€ ์ผœ์ง€์ง€๋งŒ ํ™”๋ฉด์ด ๋žœ๋”๋ง ๋˜์ง€ ์•Š๋Š” ์ƒํƒœ๊ฐ€ ๋ฐœ์ƒ.

ํ•ด๊ฒฐ๊ณผ์ •

Failed to compile.

Module not found: Error: Can't resolve './App' in 'D:\\2023\\march\\realPractice\\login\\src'
Did you mean 'App.js'?
BREAKING CHANGE: The request './App' failed to resolve only because it was resolved as fully specified
(probably because the origin is strict EcmaScript Module, e. g. a module with javascript mimetype, a '*.mjs' file, or a '*.js' file where the package.json contains '"type": "module"').
The extension in the request is mandatory for it to be fully specified.
Compiled with warnings.

๋ฆฌ์•กํŠธ๋กœ ๊ตฌ์„ฑ๋œ ํ™”๋ฉด์ด ์ปดํŒŒ์ผ์— ์‹คํŒจํ–ˆ์œผ๋ฉฐ, EcmaScript Module์ด ์‚ฌ์šฉ๋˜์ง€ ์•Š์•„์„œ ์ƒ๊ธด๋‹ค๋Š” ๋ฌธ์ œ.

App.js ๋กœ ์ด๋™ํ•ด๋ณด๋‹ˆ electron ํ†ต์‹ ๊ณผ ๊ด€๋ จ๋œ ์ฝ”๋“œ๊ฐ€ ์žˆ์—ˆ๋Š”๋ฐ, ์—ฌ๊ธฐ์„œ ์‚ฌ์šฉ๋œ ipcRenderer ๊ด€๋ จ ํ•จ์ˆ˜๋Š” preloadsd.js์— ์ •์˜ํ–ˆ์—ˆ๋‹ค. ์ด์ „์— require๋กœ ์ˆ˜์ •ํ–ˆ๋˜ ์ฝ”๋“œ๋“ค์„ import ๋ฅผ ํ™œ์šฉํ•˜์—ฌ electron์˜ ํ•จ์ˆ˜๋“ค์„ ๋ถˆ๋Ÿฌ์™€์„œ ์ƒ๊ธด ๋ฌธ์ œ.

ํ•ด๊ฒฐ ๋ฐฉ๋ฒ•

//preloads.js

//before
import { contextBridge, ipcRenderer } from 'electron';

//after
const {ipcRenderer,contextBridge}=require('electron');

 

๋Œ“๊ธ€