title
stringlengths
1
544
โŒ€
parent
stringlengths
0
57
โŒ€
created
stringlengths
11
12
โŒ€
editor
stringclasses
1 value
creator
stringclasses
4 values
edited
stringlengths
11
12
โŒ€
refs
stringlengths
0
536
โŒ€
text
stringlengths
1
26k
id
stringlengths
32
32
Web Event Interface
Web Basic Interfaces
Apr 5, 2021
Alan Jo
Alan Jo
Feb 23, 2022
[Event Driven Model](https://texonom.com/event-driven-model-ef684c52fe6040bc97aa68a9c231f5eb)
์›น ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜์—์„œ ์‚ฌ์šฉ์ž์˜ ์ž…๋ ฅ์„ ๋ฐ›๊ธฐ ์œ„ํ•ด์„œ๋Š” ์ด๋ฒคํŠธ ๋“ฑ๋ก์„ ํ•˜๊ฒŒ ๋œ๋‹ค ์ด ์ด๋ฒคํŠธ๋ฅผ ๊ฐ์ง€ํ•˜๋Š” ๋ฐฉ์‹ ๋‘ ๊ฐ€์ง€๊ฐ€ ๋ฒ„๋ธ”๋ง๊ณผ ์บก์ณ ### Web Event Interface Children |Title| |:-:| |[Web Event](https://texonom.com/web-event-227841481add4297b8c5334694ae30a3)| |[Web stopPropagation](https://texonom.com/web-stoppropagation-776e92183dfd4560a510907e2607d697)| |[WindowEventHandlers](https://texonom.com/windoweventhandlers-c3e6daf624684ee48cbe7b006d479e6e)| |[IntersectionObserver API](https://texonom.com/intersectionobserver-api-652d520651ee44748566c895f3416822)| |[Web EventSource](https://texonom.com/web-eventsource-e828029b309f4b85845eb74c3de1fe83)| |[JS EventEmitter](https://texonom.com/js-eventemitter-5dbaf6d29cb64a3f966d4a0274f6b5dc)| |[Web EventTarget](https://texonom.com/web-eventtarget-81b6a39189ef483ab9d130ece149af02)| |[Web ErrorEvent](https://texonom.com/web-errorevent-8271531d821748fc921556c12f1d06a9)| ### Event Types > [์ด๋ฒคํŠธ ์ฐธ์กฐ | MDN](https://developer.mozilla.org/ko/docs/Web/Events) ### Event to parent, not node > [Avoid too many events & Event Delegation - Working w Browser Events - Udacity FrontENDev](https://gist.github.com/desinas/3f9aea1317eea217028f4575d042a62d) > [JavaScript Event KeyCodes](https://keycode.info/) > [์ด๋ฒคํŠธ ๋ฒ„๋ธ”๋ง, ์ด๋ฒคํŠธ ์บก์ฒ˜ ๊ทธ๋ฆฌ๊ณ  ์ด๋ฒคํŠธ ์œ„์ž„๊นŒ์ง€](https://joshua1988.github.io/web-development/javascript/event-propagation-delegation/)
a0d32630fa784a5890b64e6ea4c0286d
Web EventTarget Interface
Web Basic Interfaces
Jan 15, 2023
Alan Jo
Alan Jo
Apr 15, 2023
### Web EventTarget Interface Children |Title| |:-:| |[Web Node Interface](https://texonom.com/web-node-interface-638d046d863d4c9aafc7cf133d7929f2)| |[Web Window Interface](https://texonom.com/web-window-interface-baf7579b183e495d9559fdca66bdbf7f)|
0cae8f05018a4921b049a9cdefbab9e1
Web History Interface
Web Basic Interfaces
Dec 20, 2021
Alan Jo
Alan Jo
Jan 29, 2022
[JS structuredClone()](https://texonom.com/js-structuredclone-e5c933bb0ab0408ebc581e1fed2d5c33)
[Web History pushState](https://texonom.com/web-history-pushstate-c7d963954b1e4a969db527aab3c78539) [Web History replaceState](https://texonom.com/web-history-replacestate-c4122a78ee304fe4b84f3187e61348ef) > [History.replaceState() - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/History/replaceState) > [(HTML&DOM) History API - ์ฃผ์†Œ๋ฅผ ๋‚ด ๋งˆ์Œ๋Œ€๋กœ!](https://www.zerocho.com/category/HTML&DOM/post/599d2fb635814200189fe1a7)
8247d05b8db34b278dc08a886c1d201a
console.log
Web console functions
Jan 26, 2021
Alan Jo
Alan Jo
May 31, 2021
- type ```typeconsole.log(var)typeof var```
392a2d2bd20e49588324a88ce780cc31
console.time
Web console functions
Jan 26, 2021
Alan Jo
Alan Jo
Jan 27, 2022
- time consume ```typeconsole.time("answer time");alert("Click to continue");console.time("answer time");alert("Do a bunch of other stuff...");console.timeEnd("answer time");``` ### Use performance.now() diff ```typeperformance.now()``` > [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 0. ์ „๋ฐ˜์  ์›์น™๊ณผ ์›๋ฆฌ](https://black7375.tistory.com/72) > [How to measure time taken by a function to execute](https://stackoverflow.com/questions/313893/how-to-measure-time-taken-by-a-function-to-execute) > [Console.timeLog()](https://developer.mozilla.org/en-US/docs/Web/API/Console/timeLog)
84394ca858334c3ca66c12dd5e51fbcb
console.trace
Web console functions
Jan 26, 2021
Alan Jo
Alan Jo
May 31, 2021
> [How can I get a JavaScript stack trace when I throw an exception?](https://stackoverflow.com/questions/591857/how-can-i-get-a-javascript-stack-trace-when-i-throw-an-exception)
444fdabd09f643439eb5230da6d79b7a
JS console group
Web console functions
Mar 16, 2022
Alan Jo
Alan Jo
Mar 16, 2022
```typeconsole.groupCollapsed('Facility Edited')console.trace()console.groupEnd()``` trace cannot cllape
ac34eafe498c46d1a3fba98b4b9a8f13
JS console.assert()
Web console functions
May 31, 2021
Alan Jo
Alan Jo
May 31, 2021
```typeconsole.assert(necessary, message)```
7be514748b2f45f89aa29ee99d9a5965
JS console.debug
Web console functions
Mar 7, 2022
Alan Jo
Alan Jo
Mar 7, 2022
279c0db818e64b658eeaa474e8510f98
JS console.error
Web console functions
Nov 13, 2021
Alan Jo
Alan Jo
Nov 13, 2021
d8be26e23f4f4488a834f4d8c0c15edb
JS console.table
Web console functions
Nov 13, 2021
Alan Jo
Alan Jo
Nov 13, 2021
3a54aa7831c94f59a2b8e8a4e838b287
JS console.warn
Web console functions
Nov 13, 2021
Alan Jo
Alan Jo
Nov 13, 2021
4d0b5b38c11744b382d55590580162db
IntersectionObserver API
Web Event Interface Children
Apr 16, 2021
null
null
null
> [IntersectionObserver.IntersectionObserver()](https://developer.mozilla.org/ko/docs/Web/API/IntersectionObserver/IntersectionObserver)
652d520651ee44748566c895f3416822
JS EventEmitter
Web Event Interface Children
May 12, 2021
null
null
null
[Pub Sub Pattern](https://texonom.com/pub-sub-pattern-a0274b70f4c8453d8d4d152a925d588f)
DOM ์ด๋ฒคํŠธ ๋ง๊ณ , node js ๋Ÿฐํƒ€์ž„์ƒ ํŠธ๋ฆฌ๊ฑฐ๋ฅผ ๊ธฐ๋ฐ˜์œผ๋กœ ์ด๋ฒคํŠธ๋ฅผ ๋‚ด๋ณด๋‚ด๊ณ  ์‘๋‹ต ### JS EventEmitter Notion |Title| |:-:| |[EventEmitter subscribe](https://texonom.com/eventemitter-subscribe-7ea10bfc6e3f4c339ae1fff2f7f73bdd)| |[EventEmitter emit](https://texonom.com/eventemitter-emit-f1aec9d047b34b72acc535767d759b48)| ### Browser EventEmitter Implementations |Title| |:-:| |[npm events](https://texonom.com/npm-events-33b0c52edc2c48b08f68a663a6b430a5)| |[npm evt](https://texonom.com/npm-evt-257db0052b9a4af1b943085531e062f5)| > [Nodejs EventEmitter ๋œฏ์–ด๋ณด๊ธฐ](https://www.huskyhoochu.com/nodejs-eventemitter/) > [Events | Node.js v16.1.0 Documentation](https://nodejs.org/api/events.html)
5dbaf6d29cb64a3f966d4a0274f6b5dc
Web ErrorEvent
Web Event Interface Children
Apr 15, 2023
null
null
null
8271531d821748fc921556c12f1d06a9
Web Event
Web Event Interface Children
May 29, 2021
null
null
null
[Event Bubbling](https://texonom.com/event-bubbling-bb19a3c06f0e40a0b11d4dc3137d2002) [Event Capture](https://texonom.com/event-capture-069f317502354f269e2b834d5acf75f2) [DOM](https://texonom.com/dom-43e619acce9043cb86494ffd22f1fd7c)
์‚ฌ์šฉ์ž๊ฐ€ ์ทจํ•œ ์•ก์…˜์— ๋Œ€ํ•œ ์ƒ์„ธ์ •๋ณด ### Web Events |Title| |:-:| |[Web UIEvent](https://texonom.com/web-uievent-e3a9846244d0411f916afebcae633878)| |[Web StorageEvent](https://texonom.com/web-storageevent-8ef298b8f61e4cabb4798427075d5b27)| |[Web SubmitEvent](https://texonom.com/web-submitevent-98119bffff104bcfaa5d861eeddb93a1)| |[Web ErrorEvent](https://texonom.com/web-errorevent-b2f267650eb4476e89b677559969236b)| ### force by js ```typewindow.dispatchEvent(new Event('resize'));``` > [Explore DOM Events](https://domevents.dev/)
227841481add4297b8c5334694ae30a3
Web EventSource
Web Event Interface Children
Dec 5, 2021
null
null
null
[SSE](https://texonom.com/sse-72737ebc20b04b29aaf927fafc841e6b)
```typeuseEffect(() => { // ๋„ˆ์™€ ๋‚˜์˜ ์—ฐ๊ฒฐ๊ณ ๋ฆฌ ๋งŒ๋“ค์–ด ์ฃผ๊ธฐ const sseEvents = new EventSource('http://localhost:3000/sse') sseEvents.onopen = function() { // ์—ฐ๊ฒฐ ๋์„ ๋•Œ } sseEvents.onerror = function (error) { // ์—๋Ÿฌ ๋‚ฌ์„ ๋•Œ } sseEvents.onmessage = function (stream) { // ๋ฉ”์„ธ์ง€ ๋ฐ›์•˜์„ ๋•Œ const parsedData = JSON.parse(stream.data) }}, [])```
e828029b309f4b85845eb74c3de1fe83
Web EventTarget
Web Event Interface Children
Jan 28, 2022
null
null
null
[Web Element Interface](https://texonom.com/web-element-interface-83eefebad37e4039a94b5cf69fe18cc8) [DOM](https://texonom.com/dom-43e619acce9043cb86494ffd22f1fd7c)
81b6a39189ef483ab9d130ece149af02
Web stopPropagation
Web Event Interface Children
Apr 19, 2021
null
null
null
๋ฒ„๋ธ”๋ง์˜ ๊ฒฝ์šฐ์—๋Š” ํ•ด๋‹น ์š”์†Œ์˜ ์ด๋ฒคํŠธ๋งŒ ๋ฐœ์ƒ์‹œํ‚ค๊ณ  ์ƒ์œ„ ์š”์†Œ๋กœ ์ „๋‹ฌ๋˜๋Š” ๊ฒƒ์„ ๋ฐฉํ•ดํ•˜๋ฉฐ, ์บก์ณ์˜ ๊ฒฝ์šฐ์—๋Š” ํด๋ฆญํ•œ ์š”์†Œ์˜ ์ตœ์ƒ์œ„ ์š”์†Œ์˜ ์ด๋ฒคํŠธ๋งŒ ๋™์ž‘์‹œํ‚ค๊ณ  ํ•˜์œ„ ์š”์†Œ๋กœ ์ „๋‹ฌ๋˜๋Š” ๊ฒƒ์„ ๋ฐฉํ•ด โ€ฃ
776e92183dfd4560a510907e2607d697
WindowEventHandlers
Web Event Interface Children
Mar 26, 2021
null
null
null
[HTML onpopstate](https://texonom.com/html-onpopstate-45d3fc36af5744cb95129a21e723688d)
c3e6daf624684ee48cbe7b006d479e6e
npm events
Browser EventEmitter Implementations
Aug 16, 2021
Alan Jo
Alan Jo
Aug 16, 2021
no type safe
33b0c52edc2c48b08f68a663a6b430a5
npm evt
Browser EventEmitter Implementations
Aug 16, 2021
Alan Jo
Alan Jo
Aug 16, 2021
### npm evt usage |Title| |:-:| ### EventEmitter's typesafe replacement > [GitHub - garronej/evt: ๐Ÿ’งEventEmitter's typesafe replacement](https://github.com/garronej/evt?ref=https://githubhelp.com)
257db0052b9a4af1b943085531e062f5
EventEmitter emit
JS EventEmitter Notion
Aug 16, 2021
Alan Jo
Alan Jo
Aug 16, 2021
f1aec9d047b34b72acc535767d759b48
EventEmitter subscribe
JS EventEmitter Notion
Aug 16, 2021
Alan Jo
Alan Jo
Aug 16, 2021
7ea10bfc6e3f4c339ae1fff2f7f73bdd
Web ErrorEvent
Web Events
Feb 23, 2022
null
null
null
[JS Error](https://texonom.com/js-error-d034bc89a3cd47e89c80654dc9d5011f)
> [ErrorEvent - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/ErrorEvent)
b2f267650eb4476e89b677559969236b
Web StorageEvent
Web Events
Feb 23, 2022
null
null
null
[localStorage](https://texonom.com/localstorage-28eac128c31a413fafff46b74ad27be8)
> [StorageEvent - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/StorageEvent)
8ef298b8f61e4cabb4798427075d5b27
Web SubmitEvent
Web Events
Feb 23, 2022
null
null
null
[<form/>](https://texonom.com/form-ed7a23e6831f47879f1e6befd730ee78)
> [SubmitEvent - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/SubmitEvent)
98119bffff104bcfaa5d861eeddb93a1
Web UIEvent
Web Events
Feb 23, 2022
null
null
null
### Web UIEvents |Title| |:-:| |[Web MouseEvent](https://texonom.com/web-mouseevent-63a0c481409a4d82bda23c18e574e111)| |[Web TouchEvent](https://texonom.com/web-touchevent-01edd9766ec3405d9c829c4ce70970a3)| |[Web KeyboardEvent](https://texonom.com/web-keyboardevent-d0716f66d44d46b78190969cc38d9d31)| |[Web InputEvent](https://texonom.com/web-inputevent-55f60e01730341eaa61144dd23bd6607)| |[Web FocusEvent](https://texonom.com/web-focusevent-788c9210da9f4be2a7898905df7a0297)| |[Web WheelEvent](https://texonom.com/web-wheelevent-6a4c951a36cf4b4aa4d4256248a4546f)| |[Web CompositionEvent](https://texonom.com/web-compositionevent-9811fd2eaacd408da547f9a29989bbbf)| > [UIEvent - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/UIEvent)
e3a9846244d0411f916afebcae633878
Web CompositionEvent
Web UIEvents
Feb 23, 2022
null
null
null
null
9811fd2eaacd408da547f9a29989bbbf
Web FocusEvent
Web UIEvents
Feb 23, 2022
null
null
null
null
788c9210da9f4be2a7898905df7a0297
Web InputEvent
Web UIEvents
Feb 23, 2022
null
null
null
null
55f60e01730341eaa61144dd23bd6607
Web KeyboardEvent
Web UIEvents
Mar 25, 2021
null
null
null
null
```typevar keyboardEvent = document.createEvent('KeyboardEvent');var initMethod = typeof keyboardEvent.initKeyboardEvent !== 'undefined' ? 'initKeyboardEvent' : 'initKeyEvent';keyboardEvent[initMethod]( 'keypress', // event type: keydown, keyup, keypress true, // bubbles true, // cancelable window, // view: should be window true, // ctrlKey false, // altKey false, // shiftKey false, // metaKey 80, // keyCode: unsigned long - the virtual key code, else 0 0, // charCode: unsigned long - the Unicode character associated with the depressed key, else 0);document.dispatchEvent(keyboardEvent);``` ```type``` [HTML keydown](https://texonom.com/html-keydown-a4a056271fff4c8690d36e1535607356) - keyup > - for printable - keypress > - for unprintable
d0716f66d44d46b78190969cc38d9d31
Web MouseEvent
Web UIEvents
Sep 14, 2021
null
null
null
null
[Web Pointer Event](https://texonom.com/web-pointer-event-cb096138a0fc421484c17eec54077533) > [Module: ol/events/condition](https://openlayers.org/en/latest/apidoc/module-ol_events_condition.html)
63a0c481409a4d82bda23c18e574e111
Web TouchEvent
Web UIEvents
Sep 14, 2021
null
null
null
null
### Web TouchEvent Notion |Title| |:-:| > [TouchEvent - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent)
01edd9766ec3405d9c829c4ce70970a3
Web WheelEvent
Web UIEvents
Feb 23, 2022
null
null
null
null
6a4c951a36cf4b4aa4d4256248a4546f
HTML keydown
Web KeyboardEvent
null
null
null
null
null
### cannot disable `ctrl+w` , `ctrl+t`, `ctrl + n` - for unprintable ```typedocument.addEventListener('contextmenu', event => { event.preventDefault()})Disable essential hotkeys:document.body.addEventListener('keydown', event => { if (event.ctrlKey && 'cvxspwuaz'.indexOf(event.key) !== -1) { event.preventDefault() }})``` > [Disable different keyboard short cuts and clicks using Javascript and JQuery](https://www.sitepoint.com/community/t/disable-different-keyboard-short-cuts-and-clicks-using-javascript-and-jquery/277794/3)
a4a056271fff4c8690d36e1535607356
Web Pointer Event
Web MouseEvent
null
null
null
null
null
ํฌ์ธํŒ… ์žฅ์น˜๊ฐ€ ๋งˆ์šฐ์Šค๋ผ๊ณ  ๊ฐ€์ •ํ•˜์ง€ ์•Š๊ณ  ํ„ฐ์น˜ ์Šคํฌ๋ฆฐ ๋“ฑ ํ™•์žฅ ์Šคํฌ๋กค ์ฐจ๋‹จ์„ ํ”ผํ•  ์ˆ˜ ์žˆ๊ฒŒ ๋งŒ๋“ค์–ด์กŒ๋‹ค ์••๋ ฅ, ์ ‘์ด‰ ๊ธฐํ•˜ํ•™, ๊ธฐ์šธ๊ธฐ ๋“ฑ ๋‹ค๋ฅธ ํ˜•์‹์˜ ์ž…๋ ฅ์— ๋Œ€ํ•œ ์ƒˆ๋กœ์šด ์†์„ฑ > [Pointer events - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/Pointer_events)
cb096138a0fc421484c17eec54077533
HTML onpopstate
WindowEventHandlers
null
null
null
null
null
๊ฐ™์€ document์— ๊ด€ํ•œ ๋‘๊ฐœ์˜ ํžˆ์Šคํ† ๋ฆฌ ์—”ํŠธ๋ฆฌ์— ๋ณ€ํ™”๊ฐ€ ์ผ์–ด๋‚  ๋•Œ๋งˆ๋‹ค > [WindowEventHandlers.onpopstate](https://developer.mozilla.org/ko/docs/Web/API/WindowEventHandlers/onpopstate)
45d3fc36af5744cb95129a21e723688d
Web Node Interface
Web EventTarget Interface Children
Apr 15, 2023
Alan Jo
Alan Jo
Apr 15, 2023
์—ฌ๋Ÿฌ ๊ฐ€์ง€ DOM ํƒ€์ž…๋“ค์ด ์ƒ์†ํ•˜๋Š” ์ธํ„ฐํŽ˜์ด์Šค ### Web Node Interface Children |Title| |:-:| |[Web Document Interface](https://texonom.com/web-document-interface-233cd7bd3d514de5be60ec4d88756e29)| |[Web Element Interface](https://texonom.com/web-element-interface-83eefebad37e4039a94b5cf69fe18cc8)| |[Web CharacterData Interface](https://texonom.com/web-characterdata-interface-9ffbcbdda7b74cc7b1d09ff9487d1364)| > [Node - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/Node)
638d046d863d4c9aafc7cf133d7929f2
Web Window Interface
Web EventTarget Interface Children
Mar 26, 2021
Alan Jo
Alan Jo
Apr 15, 2023
[requestAnimationFrame](https://texonom.com/requestanimationframe-57f327ba2f9c40e6a4d58950a508f17f)
baf7579b183e495d9559fdca66bdbf7f
Web CharacterData Interface
Web Node Interface Children
Jan 15, 2023
Alan Jo
Alan Jo
Apr 15, 2023
Parent of Text, Comment and CDATASection ### Template Gallery |Title| |:-:| |[Template Page](https://texonom.com/template-page-9bd4380b8dbc47258977796ed9dbc389)|
9ffbcbdda7b74cc7b1d09ff9487d1364
Web Document Interface
Web Node Interface Children
Mar 26, 2021
Alan Jo
Alan Jo
Apr 15, 2023
[Web Element Interface](https://texonom.com/web-element-interface-83eefebad37e4039a94b5cf69fe18cc8)
### Web Document Interfaces |Title| |:-:| |[Web Document.write](https://texonom.com/web-documentwrite-a2465e03fe864c328e7b2f2cc3982182)| |[Web Document getElementById](https://texonom.com/web-document-getelementbyid-a6042b406b3b4132afd221ad0d83f94d)| |[Web Document.createFragment](https://texonom.com/web-documentcreatefragment-677dc6d5fa9f44048a691dc12811ed8e)| |[DocumentFragment](https://texonom.com/documentfragment-d0e7e122ea2441edb9838a73b38febe9)| > [Chrome will disable modifying `document.domain` to relax the same-origin policy - Chrome Developers](https://developer.chrome.com/blog/immutable-document-domain/) > [How to trigger the window resize event in JavaScript?](https://stackoverflow.com/questions/1818474/how-to-trigger-the-window-resize-event-in-javascript) > [Capturing "Delete" Keypress with jQuery](https://stackoverflow.com/questions/1116244/capturing-delete-keypress-with-jquery)
233cd7bd3d514de5be60ec4d88756e29
Web Element Interface
Web Node Interface Children
Jun 7, 2021
Alan Jo
Alan Jo
Apr 15, 2023
### Web Element Interfaces |Title| |:-:| |[Web API HTMLElement](https://texonom.com/web-api-htmlelement-91506cce2994406b9e2be55575e9491e)| |[Element addEventListener](https://texonom.com/element-addeventlistener-55d2270d79eb4b9ebc35098959b2d405)| |[Web Element.querySelector](https://texonom.com/web-elementqueryselector-f6dc893089cb4282b084e6c76bfb8ac2)| |[Element removeEventListener](https://texonom.com/element-removeeventlistener-6dd3f2f3aaa140a8a591f82d9952ed52)| |[Web Element getBoundingClientRect](https://texonom.com/web-element-getboundingclientrect-01e565ecba6b42fa91efaf3d0ac0184c)| |[Web Element appendChild()](https://texonom.com/web-element-appendchild-dce5e36257a54fb099fff72dcd625a23)| |[Web Element.animate](https://texonom.com/web-elementanimate-a2c4e94c53a0428dac90c93895612442)| > [Element - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/Element)
83eefebad37e4039a94b5cf69fe18cc8
Template Page
Template Gallery
Apr 15, 2023
Alan Jo
Alan Jo
Apr 15, 2023
9bd4380b8dbc47258977796ed9dbc389
**DocumentFragment**
Web Document Interfaces
Aug 8, 2023
Alan Jo
Alan Jo
Aug 8, 2023
lightweight version of Document similar to [Virtual DOM](https://texonom.com/virtual-dom-fe2cb47d5fe34db78fa895d0818614f4) - Minimize [Page Reflow](https://texonom.com/page-reflow-f272e6b8077644ffa3b9d8ea6f435162) - ํ•œ๋ฒˆ๋งŒ DOM ์ ‘๊ทผ์œผ๋กœ ์ ์šฉ ```typedocument.createDocumentFragment()``` > [DocumentFragment - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment) > [DocumentFragment ๊ฐ์ฒด๋กœ, ์„ฑ๋Šฅ ์ข‹๊ฒŒ DOM ์กฐ์ž‘ํ•˜๊ธฐ](https://mong-blog.tistory.com/entry/DocumentFragment-๊ฐ์ฒด๋กœ-์„ฑ๋Šฅ-์ข‹๊ฒŒ-DOM-์กฐ์ž‘ํ•˜๊ธฐ)
d0e7e122ea2441edb9838a73b38febe9
Web Document getElementById
Web Document Interfaces
Jan 28, 2022
Alan Jo
Alan Jo
Jan 28, 2022
id ์ ‘๊ทผ์ด ๋นจ๋ผ๋„ DOM์— ์ ‘๊ทผํ•˜๋Š” ๊ฒƒ์„ ๋งค๋ฒˆ ์ด์šฉํ•˜๋Š” ๊ฒƒ์€ ์ข‹์€ ์„ ํƒ์ด ์•„๋‹ˆ๋‹ค > [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 3. Layout ๋ฐ ๋ Œ๋”๋ง](https://black7375.tistory.com/79)
a6042b406b3b4132afd221ad0d83f94d
Web Document.createFragment
Web Document Interfaces
Jan 28, 2022
Alan Jo
Alan Jo
Jan 28, 2022
๋ถ€๋ชจ๊ฐ€ ์—†๋Š” ์•„์ฃผ ์ž‘์€ document ๊ฐ์ฒด `DocumentFragment`๋Š” ํ™œ์„ฑํ™”๋œ ๋ฌธ์„œ ํŠธ๋ฆฌ ๊ตฌ์กฐ์˜ ์ผ๋ถ€๊ฐ€ ์•„๋‹ˆ๊ธฐ ๋•Œ๋ฌธ์— fragment๋ฅผ ๋ณ€๊ฒฝํ•ด๋„ย ๋ฌธ์„œ์—๋Š” ์˜ํ–ฅ์„ ๋ฏธ์น˜์ง€ ์•Š์œผ๋ฉฐ([reflow](https://developer.mozilla.org/ko/docs/Glossary/Reflow)ย ํฌํ•จ)ย ์„ฑ๋Šฅ์—๋„ ์˜ํ–ฅ์ด ์—†๋‹ค๋Š” ์  ```typefunction batch(elements) { // First write const fragment = document.createFragment(); elements.forEach(el => { fragment.appendChild(el); }); this.parentElement.appendChild(fragment); // Then read elements.forEach(el => { el.getBoundingClientRect(); });}``` > [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 3. Layout ๋ฐ ๋ Œ๋”๋ง](https://black7375.tistory.com/79) > [DocumentFragment - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/DocumentFragment)
677dc6d5fa9f44048a691dc12811ed8e
Web Document.write
Web Document Interfaces
Jan 27, 2022
Alan Jo
Alan Jo
Jan 27, 2022
์„ฑ๋Šฅ์— ์•ˆ์ข‹๋‹ค > [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 2. ํŒŒ์‹ฑ ๋ฐ ๋ Œ๋”๋ง ํŠธ๋ฆฌ](https://black7375.tistory.com/74)
a2465e03fe864c328e7b2f2cc3982182
Element addEventListener
Web Element Interfaces
Mar 26, 2021
Alan Jo
Alan Jo
Jan 27, 2022
55d2270d79eb4b9ebc35098959b2d405
Element removeEventListener
Web Element Interfaces
Mar 25, 2021
Alan Jo
Alan Jo
Jan 27, 2022
6dd3f2f3aaa140a8a591f82d9952ed52
Web API HTMLElement
Web Element Interfaces
Jun 7, 2021
Alan Jo
Alan Jo
May 12, 2022
### Web API HTMLElement Properties |Title| |:-:| |[html offsetHeight](https://texonom.com/html-offsetheight-86bf3b2fef184034b0e33c06bb2cea4b)| |[HTMLElement.scrollIntoView](https://texonom.com/htmlelementscrollintoview-0aa50b14c8b34afd83147eac578a6db1)| |[html element class](https://texonom.com/html-element-class-115dfd90e7fe40a8883b1797665d60ff)| |[html element.style](https://texonom.com/html-elementstyle-0591df8956064e52b3f6eb51cb0e5557)| inert๋˜๋ฉด overlay ์ƒ๊ธด๊ฒƒ์ฒ˜๋Ÿผ - testContest - innerText - innterHTML textContent์˜ ์„ฑ๋Šฅ์ด ๊ฐ€์žฅ ์ข‹์€ ํŽธ ![](https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Fe131223d-6354-48a8-b21a-90a467c687fb%2FUntitled.png?table=block&id=facb513c-40fa-406f-9238-8127a43fd589&cache=v2) > [๋‹น์‹ ์ด innerHTML์„ ์“ฐ๋ฉด ์•ˆ๋˜๋Š” ์ด์œ ](https://velog.io/@raram2/%EB%8B%B9%EC%8B%A0%EC%9D%B4-innerHTML%EC%9D%84-%EC%93%B0%EB%A9%B4-%EC%95%88%EB%90%98%EB%8A%94-%EC%9D%B4%EC%9C%A0) > [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 2. ํŒŒ์‹ฑ ๋ฐ ๋ Œ๋”๋ง ํŠธ๋ฆฌ](https://black7375.tistory.com/74)
91506cce2994406b9e2be55575e9491e
Web Element appendChild()
Web Element Interfaces
Jan 28, 2022
Alan Jo
Alan Jo
Jan 28, 2022
> [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 3. Layout ๋ฐ ๋ Œ๋”๋ง](https://black7375.tistory.com/79)
dce5e36257a54fb099fff72dcd625a23
Web Element getBoundingClientRect
Web Element Interfaces
Jan 28, 2022
Alan Jo
Alan Jo
Jan 28, 2022
[Viewport](https://texonom.com/viewport-51df9f012fc64a909a967a9a766cf637)
[๋ทฐํฌํŠธ](https://developer.mozilla.org/ko/docs/Glossary/Viewport)์— ์ƒ๋Œ€์ ์ธ ์œ„์น˜ ์ •๋ณด๋ฅผ ์ œ๊ณตํ•˜๋Š”ย `[DOMRect](https://developer.mozilla.org/ko/docs/Web/API/DOMRect)`ย ๊ฐ์ฒด๋ฅผ ๋ฐ˜ํ™˜ > [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 3. Layout ๋ฐ ๋ Œ๋”๋ง](https://black7375.tistory.com/79) > [Element.getBoundingClientRect() - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/Element/getBoundingClientRect)
01e565ecba6b42fa91efaf3d0ac0184c
Web Element.animate
Web Element Interfaces
Feb 26, 2022
Alan Jo
Alan Jo
Feb 26, 2022
[CSS transform](https://texonom.com/css-transform-28dfb551328c4a4c80ae7610ccd236ad) [CSS animation](https://texonom.com/css-animation-bb631b112f8a48f2a4d5fe7f07a193b2)
> [Element.animate() - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/animate) > [FLIP๊ณผ WAAPI๋ฅผ ์ด์šฉํ•œ React ์• ๋‹ˆ๋ฉ”์ด์…˜](https://goohooh.github.io/animation/flip_animation_with_react/?fbclid=IwAR3Da7IdU7wqJvFjnP7Yg4Qzr6letsIIpCFrPzR2K-ue3M3YsFUp9kiOhq8)
a2c4e94c53a0428dac90c93895612442
Web Element.querySelector
Web Element Interfaces
Mar 26, 2021
Alan Jo
Alan Jo
Jan 27, 2022
[CSS](https://texonom.com/css-25bc922174f74cd5a144fdb500540b7f)
```typedocument.querySelector('#foo\bar')``` > [Document.querySelector() - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/Document/querySelector)
f6dc893089cb4282b084e6c76bfb8ac2
html element class
Web API HTMLElement Properties
Mar 26, 2021
Alan Jo
Alan Jo
Jun 7, 2023
```typeelement.classList.remove("mystyle");element.classList.add("mystyle");``` > [How To Add a Class Name](https://www.w3schools.com/howto/howto_js_add_class.asp)
115dfd90e7fe40a8883b1797665d60ff
html element.style
Web API HTMLElement Properties
Mar 26, 2021
Alan Jo
Alan Jo
Jun 7, 2021
### Important css override ```typeelement.setAttribute('style', 'display:inline !important');``` > [Overriding !important style](https://stackoverflow.com/questions/462537/overriding-important-style) ### transition ```typedocument.getElementById("myDIV").style.transitionDuration = "1s";``` > [Style transitionDuration Property](https://www.w3schools.com/jsref/prop_style_transitionduration.asp) ```typecloud.stats.dom.style.cssText = 'position:absolute;top:0px;right:0px;'```
0591df8956064e52b3f6eb51cb0e5557
html offsetHeight
Web API HTMLElement Properties
Mar 26, 2021
Alan Jo
Alan Jo
Jun 7, 2021
86bf3b2fef184034b0e33c06bb2cea4b
HTMLElement.scrollIntoView
Web API HTMLElement Properties
Mar 26, 2021
Alan Jo
Alan Jo
Jun 7, 2021
```typeHTMLElement.scrollIntoView({behavior : "smooth"})```
0aa50b14c8b34afd83147eac578a6db1
`requestAnimationFrame`
Web Window Interface
null
null
null
null
null
```type// Function that returns a Promise for the FPSconst getFPS = () => new Promise(resolve => requestAnimationFrame(t1 => requestAnimationFrame(t2 => resolve(1000 / (t2 - t1))) ) )// Calling the function to get the FPSgetFPS().then(fps => console.log(fps));``` > [window.requestAnimationFrame() - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/Window/requestAnimationFrame) > [Is it possible to find out what is the monitor frame rate in javascript?](https://stackoverflow.com/questions/6131051/is-it-possible-to-find-out-what-is-the-monitor-frame-rate-in-javascript/44013686)
57f327ba2f9c40e6a4d58950a508f17f
Web History pushState
Web History Interface
null
null
null
null
null
c7d963954b1e4a969db527aab3c78539
Web History replaceState
Web History Interface
null
null
null
null
null
c4122a78ee304fe4b84f3187e61348ef
Web Blob Interface
Web Network Interfaces
Apr 26, 2021
Alan Jo
Alan Jo
May 4, 2023
[Blob](https://texonom.com/blob-334e61dd7e7247eaae7f9b816a6098b7)
### Web Blob Notion |Title| |:-:| |[Blob URL](https://texonom.com/blob-url-6811ea71c30e43238c60697b63f19ab8)| |[JS new Blob](https://texonom.com/js-new-blob-14954292da714ab0af33e9e3a773d148)| > [Blob(๋ธ”๋ž) ์ดํ•ดํ•˜๊ธฐ](https://heropy.blog/2019/02/28/blob/)
770a0328a4904073a5ea8c2bbcac6c1d
Web DOMString Interface
Web Network Interfaces
Apr 26, 2021
Alan Jo
Alan Jo
May 23, 2021
DOMString์€ UTF-16 ๋ฌธ์ž์—ด์ž…๋‹ˆ๋‹ค. JavaScript์˜ String๋„ UTF-16 ๋ฌธ์ž์—ด์ด๊ธฐ ๋•Œ๋ฌธ์— DOMString์€ String์œผ๋กœ ์—ฐ๊ฒฐ > [DOMString](https://developer.mozilla.org/ko/docs/Web/API/DOMString)
e29967bd69a0434c9781b0937ca39ba9
Web Location Interface
Web Network Interfaces
May 13, 2021
Alan Jo
Alan Jo
May 23, 2021
Window์™€ Document๊ฐ€ ๊ฐ€์ง > [Location - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/Location)
974ea0fc96014053b644580e736979e9
Web MutationObserver Interface
Web Network Interfaces
Mar 26, 2021
Alan Jo
Alan Jo
May 23, 2021
### DOM ๋ณ€๊ฒฝ ๊ฐ์‹œ๋ฅผ ์ œ๊ณต ์ƒˆ DOM ๋ณ€๊ฒฝ ๊ฐ์‹œ์ž์˜ ์ธ์Šคํ„ด์Šคํ™”์— ๋Œ€ํ•œ ์ƒ์„ฑ์ž
e7c8137f7c9d42ea83ac07e0e2bf61ea
Web Navigator Interface
Web Network Interfaces
May 23, 2021
Alan Jo
Alan Jo
Apr 30, 2023
## represents the state and the identity of the user agent ### Web Navigator API |Title| |:-:| |[Badging API](https://texonom.com/badging-api-e2752b027d5744838b82a239b8ee973c)| ### Web Navigator Members |Title| |:-:| |[Web navigator.connection](https://texonom.com/web-navigatorconnection-a221df93872a4c13898e3e8b6bdf9fe5)| |[Web navigator.storage](https://texonom.com/web-navigatorstorage-abe6eda7ee1b46d1b3eca2a4ff8443d4)| |[Web getInstalledRelatedApps()](https://texonom.com/web-getinstalledrelatedapps-904fe2d997be48769d2376337b0454ad)| |[Web navigator.language](https://texonom.com/web-navigatorlanguage-79278608cd674edd9a15aa6f8fe7541b)|
85461a646f014fc4b569fdce5cdb01b1
Web performance Interface
Web Network Interfaces
May 24, 2021
Alan Jo
Alan Jo
May 24, 2021
[Web performance.navigation](https://texonom.com/web-performancenavigation-f25526b2dfed46c697340088e798377f) [Web performance.timing](https://texonom.com/web-performancetiming-621754e377f14192b306a42023d62cab)
a043d7e15281452caf7767a39664672d
Blob URL
Web Blob Notion
Apr 26, 2021
null
null
null
[Data URL](https://texonom.com/data-url-a019eeb8e478440586d9875df3861dd2)
Blob ๊ฐ์ฒด๋ฅผ ๊ฐ€๋ฆฌํ‚ค๋Š” URL์„ ์ƒ์„ฑํ•˜์—ฌ DOM์—์„œ ์ฐธ์กฐํ•  ์ˆ˜ ์žˆ๊ฒŒ Blob ๊ฐ์ฒด๋ฅผ ๊ฐ€๋ฆฌํ‚ค๋Š” URL์„ ์ƒ์„ฑ์„ ์œ„ํ•ด URL ๊ฐ์ฒด์˜ ์ •์  ๋ฉ”์†Œ๋“œ(Static Method)๋กœ createObjectURL๊ณผ revokeObjectURL๋ฅผ ์‚ฌ์šฉ ### Blob URL์€ ์ƒ์„ฑ๋œ window์˜ document์—์„œ๋งŒ(๋ธŒ๋ผ์šฐ์ €) ์œ ํšจ **window์—์„œ ์žฌํ™œ์šฉํ•  ์ˆ˜ ์—†์œผ๋ฉฐ, URL์˜ ์ˆ˜๋ช…์ด ํ•œ์ •๋˜์–ด ์žˆ๊ธฐ ๋•Œ๋ฌธ์— file:URL๊ณผ ๋‹ค๋ฅด๊ฒŒ ๋ณด์•ˆ ์ด์Šˆ์—์„œ ๋ฒ—์–ด๋‚  ์ˆ˜ ์žˆ๋‹ค** > [Blob(๋ธ”๋ž) ์ดํ•ดํ•˜๊ธฐ](https://heropy.blog/2019/02/28/blob/)
6811ea71c30e43238c60697b63f19ab8
JS new Blob
Web Blob Notion
Apr 26, 2021
null
null
null
์ƒ์„ฑ ์‹œ ์ธ์ˆ˜๋กœ array์™€ options Blob ์ƒ์„ฑ์ž์˜ ์ฒซ๋ฒˆ์งธ ์ธ์ˆ˜๋กœ ArrayBuffer, ArrayBufferView, Blob(File), DOMString ๊ฐ์ฒด ๋˜๋Š” ์ด๋Ÿฌํ•œ ๊ฐ์ฒด๊ฐ€ ํ˜ผํ•ฉ๋œ Array๋ฅผ ์‚ฌ์šฉ๊ฐ€๋Šฅ ์˜ต์…˜์œผ๋กœ๋Š” type๊ณผ endings๋ฅผ ์„ค์ • ๋ฐ”์ดํŠธ ๋‹จ์œ„๋กœ ๋ถ„๋ฆฌํ•˜๊ฑฐ๋‚˜ ํ•ฉ์น  ์ˆ˜ ์žˆ์Œ
14954292da714ab0af33e9e3a773d148
**Badging API**
Web Navigator API
Apr 27, 2023
Alan Jo
Alan Jo
Apr 30, 2023
[Service Worker](https://texonom.com/service-worker-df54a2fca9ca4927a6aaf7adc70c2da7)
### Safari > [Badging for Home Screen Web Apps](https://webkit.org/blog/14112/badging-for-home-screen-web-apps) > [Badging API - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/Badging_API)
e2752b027d5744838b82a239b8ee973c
Web getInstalledRelatedApps()
Web Navigator Members
May 23, 2021
Alan Jo
Alan Jo
Apr 30, 2023
```typeconst relatedApps = await navigator.getInstalledRelatedApps();relatedApps.forEach((app) => { console.log(app.id, app.platform, app.url);});``` > [Is your app installed? getInstalledRelatedApps() will tell you!](https://web.dev/get-installed-related-apps/)
904fe2d997be48769d2376337b0454ad
Web navigator.connection
Web Navigator Members
May 23, 2021
Alan Jo
Alan Jo
Apr 30, 2023
- `navigator.connection.saveData` - data save mode > [Delivering Fast and Light Applications with Save-Data](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/save-data/#detecting_the_save-data_setting)
a221df93872a4c13898e3e8b6bdf9fe5
Web navigator.language
Web Navigator Members
May 23, 2021
Alan Jo
Alan Jo
Apr 30, 2023
Safari on iOS prior to 10.2, the country code returned is lowercase: "en-us", "fr-fr" > [Navigator.language - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/language)
79278608cd674edd9a15aa6f8fe7541b
Web navigator.storage
Web Navigator Members
May 23, 2021
Alan Jo
Alan Jo
Apr 30, 2023
[Web navigator.storage.estimate()](https://texonom.com/web-navigatorstorageestimate-16d58341393f4a75adae18ad35d42df0) > [Estimating Available Storage Space | Web | Google Developers](https://developers.google.com/web/updates/2017/08/estimating-available-storage-space)
abe6eda7ee1b46d1b3eca2a4ff8443d4
Web navigator.storage.estimate()
Web navigator.storage
null
null
null
null
null
```typeif ('storage' in navigator && 'estimate' in navigator.storage) {ย  navigator.storage.estimate().then(({usage, quota}) => {ย  ย  console.log(`Using ${usage} out of ${quota} bytes.`);ย  });}```
16d58341393f4a75adae18ad35d42df0
Web performance.navigation
Web performance Interface
null
null
null
null
null
f25526b2dfed46c697340088e798377f
Web performance.timing
Web performance Interface
null
null
null
null
null
### ๊ฐ„๋‹จํ•˜์ง€๋งŒ ๊ฐ™์€ pc์—์„œ๋„ ๋งŽ์ด ๋ฐ”๋€๋‹ค ```typeperformance.timing.domComplete - performance.timing.domLoading```
621754e377f14192b306a42023d62cab
Web USB Interface
Web Media Interfaces
May 23, 2021
Alan Jo
Alan Jo
May 23, 2021
### Web USB Interfaces |Title| |:-:| > [Access USB Devices on the Web](https://web.dev/usb/) > [USB - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/USB)
56192d21de9240499d9960fe2e3f69ae
Web Cache Interface
Web Storage Interfaces
Nov 23, 2020
Alan Jo
Alan Jo
Jan 29, 2022
[PWA](https://texonom.com/pwa-ce30bfc4fc164a59ac2ca0b01f23edf7) [IndexedDB](https://texonom.com/indexeddb-d25e56026b6749d38cfd634dedf29d55) [HTTP Cache-Control Response](https://texonom.com/http-cache-control-response-9954593bf2c94b6aaa8f7d6ec81fca82) [HTTP ETag Header](https://texonom.com/http-etag-header-e27a505da3024ae0a267d761779dfb28)
### Cache API to make your application data available offline > [Untitled](https://developer.mozilla.org/ko/docs/Web/API/Cache) > [The Cache API: A quick guide](https://web.dev/cache-api-quick-guide/)
d9f21bd1d8564b469c928722a2244899
Web CookieStore Interface
Web Storage Interfaces
Nov 5, 2019
Alan Jo
Seong-lae Cho
Aug 17, 2021
์ฟ ํ‚ค๋Š”ย **๊ฐ๊ฐ์˜ ๋ธŒ๋ผ์šฐ์ €์—์„œย ๊ฐ๊ฐ์˜ host๋ณ„๋กœ ์‚ฌ์šฉ์ž์˜ ์ปดํ“จํ„ฐ์— dbํ˜•ํƒœ๋กœย ์ €์žฅ๋œ key-valueํ˜•์‹์˜ ๋ฐ์ดํ„ฐ ๋ฌถ์Œ**์ด๋‹ค. ์ด๋ ‡๊ฒŒ ๋งํ•˜๋ฉด ๋ญ”๊ฐ€ ์ •๋–จ์–ด์ ธ ๋ณด์ด๋‹ˆ๊นŒ ์‰ฝ๊ฒŒ ์ด์•ผ๊ธฐํ•˜์ž๋ฉด **ํด๋ผ์ด์–ธํŠธ์— ์ €์žฅ๋˜๋Š” ๋ฐ์ดํ„ฐ**๋กœ ์ดํ•ดํ•ด๋„ ๋ฌด๋ฆฌ๋Š” ์—†๋‹ค. ์ง€๊ธˆ์€ ๊ฐ„๋žตํ•˜๊ฒŒ ์„ค๋ช…ํ•˜๋‹ˆ๊นŒ ์—ฌ๋Ÿฌ๋ถ„๋“ค์ด ๊ฐ„๊ณผํ•˜๊ณ  ๊ฐˆ ์ˆ˜ ์žˆ๋Š”๊ฒŒ ์œ„์˜ ์„ค๋ช…์ด ์ค‘์š”ํ•˜๋‹ค. **1.๊ฐ๊ฐ์˜ ๋ธŒ๋ผ์šฐ์ €๋ณ„๋กœ ์ €์žฅ๋˜๋ฉฐ** **2.๊ฐ๊ฐ์˜ host(์‚ฌ์ดํŠธ)๋ณ„๋กœ ์ €์žฅ๋˜๋ฉฐ** **3.dbํ˜•ํƒœ๋กœ(chrome์˜ ๊ฒฝ์šฐ sqlite dbํ˜•ํƒœ)** **4.key-valueํ˜•ํƒœ๋กœ ์ €์žฅ๋œ๋‹ค.(key์™€ value๋ชจ๋‘ ๋ฌธ์ž์—ด๋งŒ ์ €์žฅ๊ฐ€๋Šฅ, ๊ผผ์ˆ˜์“ฐ๋ฉด ๊ฐ์ฒด๋„ ๊ฐ€๋Šฅํ•˜์ง€๋งŒ ๋ถˆ๊ฐ€๋Šฅ์ด๋ผ ๋ณด๋Š”๊ฒŒ ํŽธ** ๋ชจ๋“  ์š”์ฒญ์—์„œ ๋‚ด๊ฐ€ ๋งŒ๋“  ์ฟ ํ‚ค๋ฅผ ํ•จ๊ป˜ ๋ณด๋‚ธ๋‹ค. ๋‚จ๋„ ์ฝ์„ ์ˆ˜ ์žˆ์Œ ์ฟ ํ‚ค์— ์‹œ๊ฐ„์ œํ•œ์„ ์„ค์ •ํ•˜๋ฉด ๋ธŒ๋ผ์šฐ์ €๊ฐ€ ์ข…๋ฃŒ๋˜๋„ ๋ฐ์ดํ„ฐ๊ฐ€ ์œ ์ง€๋œ๋‹ค. > [[Web][์กฐ๊ธˆ ๋” ์ž์„ธํžˆ]๋„๋Œ€์ฒด ์™œ ์ด๋ฆ„์ด ์ฟ ํ‚ค์ธ๊ฑธ๊นŒ?, ์ƒํƒœ๋ฅผ ์ €์žฅํ•˜๋Š” http cookie](https://kamang-it.tistory.com/entry/Web%EC%A1%B0%EA%B8%88-%EB%8D%94-%EC%9E%90%EC%84%B8%ED%9E%88%EB%8F%84%EB%8C%80%EC%B2%B4-%EC%99%9C-%EC%9D%B4%EB%A6%84%EC%9D%B4-%EC%BF%A0%ED%82%A4%EC%9D%B8%EA%B1%B8%EA%B9%8C-%EC%83%81%ED%83%9C%EB%A5%BC-%EC%A0%80%EC%9E%A5%ED%95%98%EB%8A%94-http-cookie) > [CookieStore - Web APIs | MDN](https://developer.mozilla.org/en-US/docs/Web/API/CookieStore)
572fc7a41d2e430c8ca0ce92c106f71e
Web File Interface
Web Storage Interfaces
Nov 23, 2020
Alan Jo
Alan Jo
May 23, 2021
> [File](https://developer.mozilla.org/ko/docs/Web/API/File)
2c9f43f688944decbc6c0dee58116e87
Web MediaStream Interface
Web Storage Interfaces
Apr 26, 2021
Alan Jo
Alan Jo
May 23, 2021
[<video/>](https://texonom.com/video-73893bd51bb844f4ac99e864b263962a)
### MediaStream interface represents a stream of media content A stream consists of several tracks such as **video or audio tracks** [MediaStreamTrack](https://texonom.com/mediastreamtrack-7351ab9a50334423ac5e2701a149f485) [Web MediaDevices](https://texonom.com/web-mediadevices-0c277cbaac2e4e75a986ce1d63b9dabb) > [MediaStream](https://developer.mozilla.org/en-US/docs/Web/API/MediaStream)
5be211d8635345de8df056799117ad6b
MediaStreamTrack
Web MediaStream Interface
null
null
null
null
null
### The MediaStreamTrack interface represents a single media track within a stream audio or video tracks but other track types may exist as well
7351ab9a50334423ac5e2701a149f485
Web MediaDevices
Web MediaStream Interface
null
null
null
null
null
### camera > [Control camera pan, tilt, and zoom](https://web.dev/camera-pan-tilt-zoom/) > [MediaDevices - Web API | MDN](https://developer.mozilla.org/ko/docs/Web/API/MediaDevices)
0c277cbaac2e4e75a986ce1d63b9dabb
Web Capture API
Web MediaDevices APIs
May 22, 2021
null
null
null
null
4f4a9dae32ab419b8cc9f2edcc1d673b
Web PTZ API
Web MediaDevices APIs
May 22, 2021
null
null
null
null
> [Control camera pan, tilt, and zoom](https://web.dev/camera-pan-tilt-zoom/)
50624cabf5c741b5bebf780bfec3f17a
Browser Cache
Web Caching Notion
Apr 21, 2021
Alan Jo
Alan Jo
Apr 21, 2021
022fa34c5074426db8ac7fcf1a817498
Gateway Cache
Web Caching Notion
Apr 21, 2021
Alan Jo
Alan Jo
Apr 21, 2021
06464b1668f74635b555b38feb230735
Proxy Cache
Web Caching Notion
Apr 21, 2021
Alan Jo
Alan Jo
Apr 21, 2021
cdn
7b74c7e305eb4c34871ff120f76f99c7
Web BF Cache
Web Caching Notion
Jun 18, 2023
Alan Jo
Alan Jo
Jun 18, 2023
## **Back/forward cache** > [Back/forward cache](https://web.dev/i18n/en/bfcache/)
61b1989c495d40f2aecda8faac54fd00
Web Varnish Cache
Web Caching Notion
Apr 21, 2021
Alan Jo
Alan Jo
Jun 18, 2023
[VCL](https://texonom.com/vcl-4de861d536be4a9c98d9dee2f74705d8) > [Varnish HTTP Cache - Varnish HTTP Cache](https://varnish-cache.org/) > [NAVER D2](https://d2.naver.com/helloworld/352076) > [Varnish ์บ์‹œ ํžˆํŠธ ํšจ์œจ์„ ๋†’์ด๋Š” ๋ฐฉ๋ฒ• :: ์กฐ์€์šฐ ๊ฐœ๋ฐœ ๋ธ”๋กœ๊ทธ](https://jonnung.dev/system/2020/03/18/increasing-varnish-cache-hit-rate/)
c1ac9c51942e433a8f67578a218ba9b2
VCL
Web Varnish Cache
null
null
null
null
null
## Varnish Configuration Language ์ œ์•ฝ๊ณผ ์ •์ฑ…์„ ์ •์˜ HTTP๋ฅผ ๋‹ค์–‘ํ•œ ํ๋ฆ„์œผ๋กœ ํ‘œํ˜„ > [Varnish ์บ์‹œ ํžˆํŠธ ํšจ์œจ์„ ๋†’์ด๋Š” ๋ฐฉ๋ฒ• :: ์กฐ์€์šฐ ๊ฐœ๋ฐœ ๋ธ”๋กœ๊ทธ](https://jonnung.dev/system/2020/03/18/increasing-varnish-cache-hit-rate/)
4de861d536be4a9c98d9dee2f74705d8
customElements
Web Component Notion
Mar 1, 2021
Alan Jo
Alan Jo
Apr 11, 2022
์ƒˆ๋กœ์šด HTML ์š”์†Œ๋ฅผ ๋งŒ๋“ค๊ฑฐ๋‚˜ ๊ธฐ์กด HTML ์š”์†Œ๋ฅผ ํ™•์žฅ React๋‚˜ Vue ๋ณด๋‹ค ๋‹ค์šด๋ฐ›์•„์•ผ ํ•  ์–‘์ด ์ ์Œ > [Untitled](https://black7375.tistory.com/74)
4ee7c7ff6d5448f1b740374af9754581
Shadow DOM
Web Component Notion
Mar 1, 2021
Alan Jo
Alan Jo
Apr 11, 2022
### ์ปดํฌ๋„ŒํŠธ์˜ ์Šค์ฝ”ํ”„๋ฅผ ๋ถ„๋ฆฌ ์ปดํฌ๋„ŒํŠธ ์Šค์ฝ”ํ”„(Scope)๋ฅผ DOM์—์„œ ๋ถ„๋ฆฌํ•˜๊ณ  CSS ๋“ฑ์„ ๋‹จ์ˆœํ™” ์Šค์ฝ”ํ”„๋ฅผ ๋ถ„๋ฆฌํ•˜๊ธฐ ๋•Œ๋ฌธ์— CSS ๊ทœ์น™์ด ๊ฐ„๋‹จ > [[์Šค์••/๋ฐ์ดํ„ฐ์ฃผ์˜] ์›น ์ตœ์ ํ™” ๋ฐฉ์‹ ๋ชจ์Œ - 2. ํŒŒ์‹ฑ ๋ฐ ๋ Œ๋”๋ง ํŠธ๋ฆฌ](https://black7375.tistory.com/74)
cd8b8e25cee7435685b9d2bd8eabbce1
Web Component History
Web Component Notion
Mar 1, 2021
Alan Jo
Alan Jo
Apr 11, 2022
> [NAVER D2](https://d2.naver.com/helloworld/2108442)
12fd2bbf161f429a92480a53c021eb41
Web Component Framework
Web Component Usages
Mar 1, 2021
Alan Jo
Alan Jo
Jun 17, 2023
## Yet ### Web Component Frameworks |Title| |:-:| |[Lit](https://texonom.com/lit-513ba6d344194bc8aad7205e60129a77)| |[Stencil JS](https://texonom.com/stencil-js-42979c2518204ce9a548cb18b5aaa390)| |[AMP](https://texonom.com/amp-e33bfd5dfa61450985275d2ffac192a1)| |[Polymer js](https://texonom.com/polymer-js-1bb81f55e194404ea2538b0b54ce0ed8)| |[Minze](https://texonom.com/minze-93a96f198f3341f58bc589a9e7bc5178)| |[Sauron](https://texonom.com/sauron-708d18fa77104e90a2cc66ae46a90ac8)| |[Tonic framerk](https://texonom.com/tonic-framerk-412465a61ab843b38a0169880d000c77)| |[WebC](https://texonom.com/webc-e199b5b7be1a40a1a74334f99e319fd8)|
352a653982e04b028688f5aa7cd811c2
Web Component Init
Web Component Usages
Apr 11, 2022
Alan Jo
Alan Jo
Apr 11, 2022
์ปค์Šคํ…€ HTML ์š”์†Œ๋ฅผ ์ƒ์„ฑํ•˜๋ ค๋ฉด ๋จผ์ € ์š”์†Œ๋ฅผ ์ •์˜ํ•˜๋Š” ํด๋ž˜์Šค(Class)๋ฅผ ์„ ์–ธ ```typeclass WebComponent extends HTMLElement { constructor() { super() this.addEventListener('click', e => this.toggleCard()) } toggleCard() { console.log('์นด๋“œ ํ† ๊ธ€(Toggle)') }}window.customElements.define('web-component', WebComponent)``` > [yamoo9/WebComponent](https://github.com/yamoo9/WebComponent#%EB%AA%A9%EC%B0%A8)
43f1fa32251942fdb953a528913d4482
AMP
Web Component Frameworks
Feb 16, 2022
Alan Jo
Alan Jo
Jun 17, 2023
[amphtml](https://github.com/ampproject/amphtml)[amphtml](https://github.com/ampproject/amphtml)
## Accelerated Mobile Pages **๊ตฌ๊ธ€์ด ์ œ์‹œํ•œ ๋ชจ๋ฐ”์ผ ์ฝ˜ํ…์ธ  ์ตœ์ ํ™” ํ‘œ์ค€** AMP์ „์šฉํƒœ๊ทธ์˜ ์‚ฌ์šฉ์„ ์ œ์™ธํ•˜๋ฉด ๊ธฐ์กด ์‚ฌ์ดํŠธ ์ œ์ž‘์‹œ์—๋„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋Š” ๋ฐฉ๋ฒ• ๋น„์Šทํ•œ ์„œ๋น„์Šค๋กœ ์• ํ”Œ์˜ ์• ํ”Œ ๋‰ด์Šค, ํŽ˜์ด์Šค๋ถ์˜ ์ธ์Šคํ„ดํŠธ ์•„ํ‹ฐํด ์ตœ์ ํ™” ๊ธฐ์ˆ ๋“ค์„ ๋ชจ์•„๋…ผ ๋ฐฉ๋ฒ•๋ก  - ์™ธ๋ถ€ JS ์ œํ•œ - CSSํŒŒ์ผ์˜ ํฌ๊ธฐ ์ œํ•œ(50byte) - AMP ์ „์šฉํƒœ๊ทธ ์‚ฌ์šฉ - AMP HTML - AMP ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ - ๊ตฌ๊ธ€ AMP ์บ์‹œ AMP HTML๊ณผ AMP ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ๋กœ ๋งŒ๋“  AMP ํŽ˜์ด์ง€๋ฅผ ๊ตฌ์ถ•ํ•œ ํ›„ ๊ตฌ๊ธ€์— AMP ์‚ฌ์ดํŠธ๋ฅผ ์บ์‹ฑํ•œ๋‹ค. ๊ทธ ํ›„ ์‚ฌ์šฉ์ž๊ฐ€ ํŽ˜์ด์ง€๋ฅผ ์š”์ฒญํ•˜๋ฉด ์›๋ณธ ํŽ˜์ด์ง€๊ฐ€ ์•„๋‹Œ ๊ตฌ๊ธ€์— ์ €์žฅ๋œ AMP ํŽ˜์ด์ง€๋ฅผ ๋ณด์—ฌ์คŒ์œผ๋กœ์จ ๋กœ๋”ฉ์‹œ๊ฐ„์„ ๋‹จ์ถ• > [Speed Trap](https://www.theverge.com/23711172/google-amp-accelerated-mobile-pages-search-publishers-lawsuit) > [Untitled](https://namu.wiki/w/%EA%B5%AC%EA%B8%80%20%EA%B0%80%EC%86%8D%20%EB%AA%A8%EB%B0%94%EC%9D%BC%20%ED%8E%98%EC%9D%B4%EC%A7%80) > [AMP ๊ทธ๊ฒŒ ๋ญ์•ผ?](https://velog.io/@hongku/AMP-hnjy58td1h) > [AMP - a web component framework to easily create user-first web experiences](https://amp.dev/) > [Brave is bypassing Google AMP pages because they're 'harmful to users'](https://www.theverge.com/2022/4/19/23032776/brave-de-amp-google-browser)
e33bfd5dfa61450985275d2ffac192a1
Lit
Web Component Frameworks
Mar 1, 2021
Alan Jo
Alan Jo
Jun 17, 2023
### library for building fast, lightweight web components ๋น„๊ต์  ์ตœ์‹  [lit](https://github.com/lit/lit) > [Lit](https://lit.dev/)
513ba6d344194bc8aad7205e60129a77