개발 노트

webWorker관련 참고자료 본문

React

webWorker관련 참고자료

한츄 2024. 2. 5. 18:23

https://tech.kakao.com/2021/09/02/web-worker/

 

브라우저 Web Worker 다루기 with 오피스 문서 텍스트 추출 및 암호해제

안녕하세요. 톡플랫폼개발팀 bishop.cho입니다. 현재 메일클라개발셀에서 프론트엔드 업무 개발을 담당하고 있습니다. 기존에는 자바스크립트로 동작하는 오피스 에디터 및 뷰어 개발을 했던 경

tech.kakao.com

 

https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API

 

Web Workers API - Web APIs | MDN

Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of a web application. The advantage of this is that laborious processing can be performed in a separate thread, allowing the main (usuall

developer.mozilla.org

 

https://magland.hashnode.dev/typescript-web-workers-in-react

 

Typescript web workers in React

JavaScript is usually a single-threaded language, but when you need to perform computational tasks without interfering with the user interface, web workers can help. Recently, it has become much easier to incorporate web workers in React projects, pa...

magland.hashnode.dev

 

https://loclv.hashnode.dev/a-simple-web-worker-demo-with-typescript-and-nextjs

 

A simple web worker demo with TypeScript and NextJS

🗻 Prerequisites In this demo, we are using (on 2023-02-06): NextJS: 13.1.5 TypeScript template Bundler: Turbopack or webpack Let's create a simple web worker demo! 🌻 Create a simple web worker demo Because we can use Worker on any browser, so ...

loclv.hashnode.dev

 

https://velog.io/@chojs28/Next.js%EC%97%90%EC%84%9C-Web-Worker-%EC%82%AC%EC%9A%A9%ED%95%B4%EB%B3%B4%EA%B8%B0

 

velog

 

velog.io

 

http://blog.302chanwoo.com/2016/08/webworker/