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
|
---|---|---|---|---|---|---|---|---|
DTD | Web Standard Terms | Apr 4, 2021 | Alan Jo | Alan Jo | Apr 21, 2021 |
## Document Type Definition
SGML ๊ณ์ด์ ๋งํฌ์
์ธ์ด์์ ๋ฌธ์ ํ์์ ์ ์ํ๋ ๊ฒ
GML์ ๋น๋กฏํด HTML, XHTML, XML ๋ฑ์์ ์ฐ์
[DOCTYPE](https://texonom.com/doctype-e3e7fba9a05941fab6b5c2d091b6048b)
> [์ฝ๋ฉ๊ต์ก ํฐ์จํผ์ค์ฟจ](http://www.tcpschool.com/xml/xml_dtd_intro)
| 4f7cfa5898f8444c912c35e0fbd7f5f4 |
|
MIME-Type | Web Standard Terms | Apr 4, 2021 | Alan Jo | Alan Jo | Mar 15, 2022 |
### Multipurposeย Internetย Mailย Extentionย Type
๋ธ๋ผ์ฐ์ ๋ค์ ๋ฆฌ์์ค๋ฅผ ๋ด๋ ค๋ฐ์์ ๋ ํด์ผ ํ ๊ธฐ๋ณธ ๋์์ด ๋ฌด์์ธ์ง๋ฅผ ๊ฒฐ์ ํ๊ธฐ ์ํด ๋๊ฒ MIME ํ์
์ ์ฌ์ฉ
- type/subtype
- text/plain
- text/html
- image/jpeg
- image/png
- image/svg+xml
- audio/mpeg
- audio/ogg
- audio/*
- video/mp4
- application/octet-stream
[application/x-msgpack](https://texonom.com/applicationx-msgpack-403b910aca994744b30c683d497bb546)
> [MIME](https://www.w3.org/2001/tag/2011/12/evolution/MIME.html)
> [MIME ํ์
](https://developer.mozilla.org/ko/docs/Web/HTTP/Basics_of_HTTP/MIME_types)
| a6150fd0fbea4d9992c585fcd7f6ccb9 |
|
Semantic Web | Web Standard Terms | Apr 4, 2021 | Alan Jo | Alan Jo | Mar 4, 2023 | [Ontology](https://texonom.com/ontology-6724b20f79ff46048b82844a9990eab8) |
sometimes known asย **Web 3.0**
์ปดํจํฐ๊ฐย ์ดํดํ๊ณ ย ๋
ผ๋ฆฌ์ ย ์ถ๋ก ํ ย ์ย ์๋ย ์ง๋ฅํย ์น
์ฝ๊ฒ๋งํด ๊ฒ์์์ง์ด ์ฝ๊ฒ ์ฐพ๋ ์น
> [Semantic Web - Wikipedia](https://en.wikipedia.org/wiki/Semantic_Web)
| a62b88936db14bdeb63dc7752eb6c85a |
DOCTYPE | DTD | null | null | null | null | null |
<!DOCTYPE>
[XML](https://texonom.com/xml-8f26e731ef014f73b55b3f084505fe03)
[HTML](https://texonom.com/html-ecf93e8b88c24e8886568dc47c18a1bd)
[XHTML](https://texonom.com/xhtml-1a25fba3a2d3447ba6b5f1839b857ae8)
| e3e7fba9a05941fab6b5c2d091b6048b |
application/x-msgpack | MIME-Type | null | null | null | null | null |
[MessagePack](https://texonom.com/messagepack-f092c1efd7734ea0b4ef8498ef7f7c04)
| 403b910aca994744b30c683d497bb546 |
MessagePack | application/x-msgpack | null | null | null | null | null |
### Array ๋ฐ์ดํฐ๊ฐ์ด ๋ฐ๋ณต ๋ง์ ๊ฑฐ์๋ gzip ์ด ํจ์ฌ ํจ์จ ์ข๋ค
[Serialization](https://texonom.com/serialization-30ba5b9c09d8487a9ea844e050b5e084)
[MessagePack JS](https://texonom.com/messagepack-js-5ec878887aca4055be26de7bdfe7ace9)
> [XML, JSON, BSON, MSGPACK ์ฅ,๋จ์ ๋น๊ต](https://yeop-blog.github.io/2017/09/29/2017-09-29-old-blog-post28/)
> [MessagePack](https://msgpack.org/)
> [MessagePack](https://github.com/msgpack)
> [msgpack/msgpack](https://github.com/msgpack/msgpack)
| f092c1efd7734ea0b4ef8498ef7f7c04 |
MessagePack JS | MessagePack | null | null | null | null | null |
### examples
[MessagePack JS client](https://texonom.com/messagepack-js-client-887c6cb03f67439b9fe77b23a7b79542)
[MessagePack JS server](https://texonom.com/messagepack-js-server-f2a47dae011c4c65b2d3c249a870d357)
> [msgpack/msgpack-javascript](https://github.com/msgpack/msgpack-javascript#ecma-262)
| 5ec878887aca4055be26de7bdfe7ace9 |
MessagePack JS client | MessagePack JS | null | null | null | null | null |
### fetch client single objec
```typeimport { decode, decodeAsync } from '@msgpack/msgpack'const res = await fetch(url, { method: 'POST', headers: { Accept: "application/json", 'Content-Type': 'application/json' }, body: JSON.stringify({})})const pack = await decodeAsync(res.body)streamAsyncIteratordata = pack.dataValues// orconst buffer = await res.arrayBuffer()data = decode(buffer).dataValues```
### fetch stream array decode
```typeimport { decodeMultiStream } from "@msgpack/msgpack"const res = await fetch(url, { method: 'POST', headers: { Accept: "application/json", 'Content-Type': 'application/json' }, body: JSON.stringify({})})for await (const item of decodeMultiStream(res.body)) console.log(item)``` | 887c6cb03f67439b9fe77b23a7b79542 |
MessagePack JS server | MessagePack JS | null | null | null | null | null |
### node http server
```typeimport { encode } from '@msgpack/msgpack'const bufferView = typed => { return Buffer.from(typed.buffer, typed.byteOffset, typed.byteLength)}res.setHeader('content-type', 'application/x-msgpack')res.end(bufferView(encode(data)))```
### node http stream
```typeimport { encode } from '@msgpack/msgpack'for (const data of datas) res.write(encode(data))res.end()```
| f2a47dae011c4c65b2d3c249a870d357 |
Semantic Web Framework | Semantic Web Usages | Mar 4, 2023 | Alan Jo | Alan Jo | Apr 27, 2023 | [Knowledge System](https://texonom.com/knowledge-system-e29bf136aa694ca58ac2f501570d5431) |
### Semantic Web Frameworks
|Title|
|:-:|
|[Resource Description Framework](https://texonom.com/resource-description-framework-9099d777dee146bf8516d520ac08227e)|
|[pico.css](https://texonom.com/picocss-90653c6e082d463b87041e1c1a40fe8b)|
| e80cf6cd840b4425b61037f4351bd30d |
pico.css | Semantic Web Frameworks | Dec 16, 2021 | Alan Jo | Alan Jo | Mar 4, 2023 |
[pico](https://github.com/picocss/pico) | 90653c6e082d463b87041e1c1a40fe8b |
|
Resource Description Framework | Semantic Web Frameworks | Mar 4, 2023 | Alan Jo | Alan Jo | Sep 19, 2023 |
## RDF
### Resource Description Framework Notion
|Title|
|:-:|
|[Semantic Triple](https://texonom.com/semantic-triple-5599132ebb1a48dbac6d9799b2664250)|
|[RDF Graph](https://texonom.com/rdf-graph-f4f0bd0293ad485abd85cbaf4b55423e)|
| 9099d777dee146bf8516d520ac08227e |
|
RDF Graph | Resource Description Framework Notion | Sep 19, 2023 | Alan Jo | Alan Jo | Sep 19, 2023 | [Knowledge Graph](https://texonom.com/knowledge-graph-cc2dec0e7f664d159c8a646d25070cc9) | f4f0bd0293ad485abd85cbaf4b55423e |
|
Semantic Triple | Resource Description Framework Notion | Mar 4, 2023 | Alan Jo | Alan Jo | Mar 8, 2023 |
### Relation Triple
data entity in the RDF
- Subject
- Predicate
- Object
> [Semantic triple](https://en.wikipedia.org/wiki/Semantic_triple)
| 5599132ebb1a48dbac6d9799b2664250 |
|
RFC | IETF Works | Apr 4, 2021 | Alan Jo | Alan Jo | Jul 23, 2021 |
## Request for Comments
์ธํฐ๋ท ํ๋กํ ์ฝ ํ์ค์ ๋ง๋๋ ๊ฒ์ผ๋ก ์๋ ค์ ธ ์์ง๋ง ์ฌ์ค ํ์ค์ ์๋๊ณ RFC๋ฅผ ์์ฑํ ๋ฟ ์ค์ ๊ตฌํ์ ํ์ฌ๋ ๊ฐ๋ฐ์์ ์ํด ์ข์ฐ
๊ฐ๋ น ๋ฆฌ๋
์ค ์ปค๋์ TCP ์ฝ๋๋ฅผ ๋ณด๋ฉด RFC์ ์๋ ๋ด์ฉ์ด ๋ง์ด ํฌํจ๋์ด ์์ง๋ง ์ธํฐ๋ท ๋๋ถ๋ถ ํธ๋ํฝ์ ์ฐจ์งํ๋ ๊ฒ์ด ํ์ค
### Properties
- Obsoleted by
- Obsoletes
- Updates
- Request for Comments
- BCP
- Category
- ISSN
- From
[Steve Crocker](https://texonom.com/steve-crocker-702194b53f4c42599778c83779713bc4)
> [RFC Editor](https://www.rfc-editor.org/info/rfc1)
> [RFC 8890: ์ธํฐ๋ท์ ์ฌ์ฉ์์ ๊ฒ](https://www.saturnsoft.net/tech/2020/09/06/rfc8890/)
| b29b35e4de8d4c57a824829b2a5cbc01 |
|
WCAG | Web Standards | Apr 4, 2021 | Alan Jo | Alan Jo | Jun 23, 2022 | [Web Accessibility](https://texonom.com/web-accessibility-df5cea58170441e98eb2835ac98c8083) |
## **Web Content Accessibility Guidelines**
- A - ์ต์ ์ค์ ์์ค
- AA - ์น ํ์ด์ง๊ฐ ๋ชจ๋ A ๋ฐ AA ์ฑ๊ณต ๊ธฐ์ค์ ์ถฉ์กฑ์ํค๊ฑฐ๋, ์ ํฉํ AA ๋์ฒด์ ๋ฅผ ์ ๊ณต
- AAA - ์น ํ์ด์ง๊ฐ ๋ชจ๋ A, AA ๋ฐ AAA ์ฑ๊ณต ๊ธฐ์ค์ ์ถฉ์กฑ์ํค๊ฑฐ๋, ์ ํฉํ AAA ๋์ฒด์ ๋ฅผ ์ ๊ณต
[WCAG 2.0](https://texonom.com/wcag-20-edd4b8f5e773445ca5a0d1878e55d914)
[WCAG 2.1](https://texonom.com/wcag-21-21fe50aac63845f78e9a75c9b37bc167)
### Perceivable
### Operable
### Understandable
### Robust
| a0936161400c4a49af5c876f66d221ca |
Steve Crocker | RFC | null | null | null | null | null |
Request for Comments ์๋ฆฌ์ฆ์ ๋ฐ๋ช
๊ฐ๋ก ์ต์ด์ RFC ๋ฑ์ ์ ์
Vint Cerf์ Jon Postel๊ณผ ๋ง์ฐฌ๊ฐ์ง๋ก Van Nuys ๊ณ ๋ฑํ๊ต
A graduate student in the 196
| 702194b53f4c42599778c83779713bc4 |
RFC 1 | RFCs | Jul 23, 2021 | Alan Jo | Alan Jo | Jul 23, 2021 |
## Host Software, APRIL 1969
> [Untitled](https://www.rfc-editor.org/rfc/rfc1.txt)
> [RFC Editor](https://www.rfc-editor.org/info/rfc1)
| 6641183a563e4411992ae272f8b6d907 |
|
RFC 4122 | RFCs | Dec 7, 2021 | Alan Jo | Alan Jo | Dec 7, 2021 | [UUID](https://texonom.com/uuid-98ca3ddda44548eaaf95ec6f8d072af0) |
> [Untitled](https://www.ietf.org/rfc/rfc4122.txt)
| db529502997547ea921361f7b486320d |
RFC 7450 | RFCs | Feb 22, 2022 | Alan Jo | Alan Jo | Feb 22, 2022 |
[AMT Protocol](https://texonom.com/amt-protocol-f18e4c6b26b1480999dee644c0241f6d)
> [RFC 7450 - Automatic Multicast Tunneling](https://datatracker.ietf.org/doc/html/rfc7450)
| 9c09139d7c66444ca9585bed8c50879a |
|
RFC 8890 | RFCs | Jun 1, 2021 | Alan Jo | Alan Jo | Jul 23, 2021 |
## The Internet is for End Users
> [RFC8890: The Internet is for End Users](https://www.mnot.net/blog/2020/08/28/for_the_users)
| 6c3cce703a1542dc95306db9e0c55cac |
|
RFC7519 | RFCs | Jun 15, 2021 | Alan Jo | Alan Jo | Jun 15, 2021 | [JWT](https://texonom.com/jwt-7ffcc8d38b2845158f3ea3bdfb5ab51f) |
> [rfc7519](https://datatracker.ietf.org/doc/html/rfc7519)
| 166258ce72614ac089adc245dc645be6 |
AMT Protocol | RFC 7450 | null | null | null | null | null |
### **`Automatic Multicast Tunneling`**
| f18e4c6b26b1480999dee644c0241f6d |
WCAG 2.0 | WCAG | null | null | null | null | null | edd4b8f5e773445ca5a0d1878e55d914 |
|
WCAG 2.1 | WCAG | null | null | null | null | null |
 | 21fe50aac63845f78e9a75c9b37bc167 |
Web Browser | WWW Usage | Mar 28, 2020 | Alan Jo | Alan Jo | Aug 7, 2023 |
### Web Browsers
|Title|
|:-:|
|[Chromium](https://texonom.com/chromium-9bc87c1b408c474bb33ae846537b9d5b)|
|[Firefox](https://texonom.com/firefox-5d523c1019494cc7a1f510cfe305df1e)|
|[Netscape](https://texonom.com/netscape-89e127e41ab3467caf3f2a12d089fd5b)|
|[Safari](https://texonom.com/safari-0f653403ada94ac294d1496d52adcaf9)|
|[Internet Explorer](https://texonom.com/internet-explorer-dbfdaccbbe87484bbbfcffc1615ec09c)|
|[Tor Browser](https://texonom.com/tor-browser-33da373943b240f0aa10e262edabb6c4)|
### Web Browser Notion
|Title|
|:-:|
|[Web Browser History](https://texonom.com/web-browser-history-821b33aafc784d008ff43f32137be1f1)|
|[Web Browser Structure](https://texonom.com/web-browser-structure-a5bfecd8d75b4384995b94c1176393df)|
|[Browser Developer Tool](https://texonom.com/browser-developer-tool-a2b69af4b88946ecb331181c5d95d635)|
|[Web Browser Privacy](https://texonom.com/web-browser-privacy-e5e44aba148046679aa338687093b988)|
|[Mini Browser](https://texonom.com/mini-browser-fb9d2b22ef9b448a91523802afab28a9)|
### Web Browser Usages
|Title|
|:-:|
|[BEX](https://texonom.com/bex-10f46f949fc94bf4a2e174cbf871385a)|
|[Browser Plugin](https://texonom.com/browser-plugin-fdb91acd25f7489182b696edd788c031)|
|[Browser Streaming](https://texonom.com/browser-streaming-9f1d9846a4ac4aa8916d171f8897ce8c)|
|[Browser URL](https://texonom.com/browser-url-77995f10ef3c4e38abbfac43e32cf18b)|
|[Headless Browser](https://texonom.com/headless-browser-8898cbe43feb4a7eb66414d86056074a)|
|[Web Browser Automation](https://texonom.com/web-browser-automation-9b8d62705b8949cdbfff947ad1185f1b)|
|[Shell Browser](https://texonom.com/shell-browser-0f0b576e1bcd4c0e877ea3a7170953f4)|
> [Five Walled Gardens: Why Browsers are Essential to the Internet and How Operating Systems Are Holding Them Back - Mozilla Research](https://research.mozilla.org/browser-competition/)
### Browser Internal
> [https://velog.io/@rtyu1120/%EB%B8%8C%EB%9D%BC%EC%9A%B0%EC%A0%80%EC%97%90-google.com%EC%9D%84-%EC%B9%98%EB%A9%B4-%EB%AC%B4%EC%8A%A8-%EC%9D%BC%EC%9D%B4-%EC%9D%BC%EC%96%B4%EB%82%A0%EA%B9%8C-%EC%95%84%EB%8B%88-%EC%A7%84%EC%A7%9C%EB%A1%9C-%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC%ED%8E%B8](https://velog.io/@rtyu1120/%EB%B8%8C%EB%9D%BC%EC%9A%B0%EC%A0%80%EC%97%90-google.com%EC%9D%84-%EC%B9%98%EB%A9%B4-%EB%AC%B4%EC%8A%A8-%EC%9D%BC%EC%9D%B4-%EC%9D%BC%EC%96%B4%EB%82%A0%EA%B9%8C-%EC%95%84%EB%8B%88-%EC%A7%84%EC%A7%9C%EB%A1%9C-%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC%ED%8E%B8)
| 3a0ddd1380fc46f18a984e5cfe10898f |
|
Web Development | WWW Usage | Sep 25, 2021 | Alan Jo | Alan Jo | May 9, 2022 |
JS๋ง์ ์ฌ์ฉํ๋ ค ํ์ง ๋ง๊ณ ๊พธ์คํ HTML, CSS ์ฌ์ฉํด์ผ
### Web Developments
|Title|
|:-:|
|[Web Component](https://texonom.com/web-component-a222eb6c969e417fad64f129fb941adb)|
|[JWT](https://texonom.com/jwt-7ffcc8d38b2845158f3ea3bdfb5ab51f)|
|[Web API](https://texonom.com/web-api-4fbf3abc6d7e4d3c93c8024cd4db33e9)|
|[IDP](https://texonom.com/idp-3d58ef530e834ecf93caeb2011c351a0)|
|[Web Template Engine](https://texonom.com/web-template-engine-709bdd8d4e004f76b735d008767d603b)|
|[Web Cache](https://texonom.com/web-cache-49c888b13b1d4e51add6258dd584e373)|
|[SWT](https://texonom.com/swt-dada55b212974f188b9fa3c53ea280c9)|
|[HTML Template](https://texonom.com/html-template-9af872a95b05422eb7fbfb477994e202)|
|[Web Driver](https://texonom.com/web-driver-cee7f32120c24dfa8db7a8c8f9342116)|
> [The baseline for web development in 2022 - LINE ENGINEERING](https://engineering.linecorp.com/en/blog/the-baseline-for-web-development-in-2022/)
| 1d1cae96f67b4d4d8fc9b401dd767be1 |
|
Web Page | WWW Usage | May 9, 2022 | Alan Jo | Alan Jo | May 9, 2022 |
### Web Page Notion
|Title|
|:-:|
|[Web Content](https://texonom.com/web-content-825fd4483f744089809e39420a5a55cc)|
|[Web 3.0](https://texonom.com/web-30-5066d226cdea4e4c8a797831d8a7d612)|
|[Web Landing](https://texonom.com/web-landing-05cf98337de241fda4515b1fff41ac7a)|
### Web Pages
|Title|
|:-:|
|[Content oriented Web](https://texonom.com/content-oriented-web-2f495c0e75fb46c584bf4fd706f541bd)|
|[App oriented Web](https://texonom.com/app-oriented-web-7c2f7d521b9346c4b95d94ccd3741a5e)|
| f096d8d322a447b48c95700181ba45dd |
|
Web Performance | WWW Usage | Mar 21, 2021 | Alan Jo | Alan Jo | Feb 13, 2023 | [HTTP Range GET](https://texonom.com/http-range-get-4789b7aa155b4886a7971308737b6f17) [HTTP Versions](https://texonom.com/http-versions-8b752d6a1a934434949562b1f65a7f65) [Code Optimization](https://texonom.com/code-optimization-bf952f704fc6412f8eb798922523ad7a) [Software Performance](https://texonom.com/software-performance-c9b0f9245c214ded825dc7dcbcfc54a2) |
### Web Performance Notion
|Title|
|:-:|
|[Web Render Performance](https://texonom.com/web-render-performance-dc626651cc594aaba80ec8d8b011c016)|
|[Web JS Performance](https://texonom.com/web-js-performance-73cc791b0aed4ab68f9d5c62ffd93eb3)|
|[Speed Index](https://texonom.com/speed-index-087dbe00e0c24c5597a495fc38db5b02)|
|[First Contentful Paint](https://texonom.com/first-contentful-paint-9e1c3d6efa134d5190f5874fcf62f6ae)|
|[Time to Interactive](https://texonom.com/time-to-interactive-712986cb477c43d3b620fddb90af97be)|
|[Total Blocking Time](https://texonom.com/total-blocking-time-2fca2284440448378a5d9fe3f2470cbe)|
|[Largest Contentful Paint](https://texonom.com/largest-contentful-paint-77070f52ca274c408c6e9688df9a4a84)|
|[Layout Shift](https://texonom.com/layout-shift-110cb27712a44f4899fd5ff62f46f594)|
|[CRP](https://texonom.com/crp-b396ccb48f844fd29b7fbd2a31fd30e4)|
|[Used Code Coverage](https://texonom.com/used-code-coverage-4ae377ebf2cf422bab1b46dd70af7d28)|
|[Web Performance Measure](https://texonom.com/web-performance-measure-b3f2cc17cc66430b8f1c271f81862bd9)|
|[Image Loading](https://texonom.com/image-loading-38fbc42e9ad649f29edeb5d3deedd8ba)|
|[Web Vital](https://texonom.com/web-vital-511befb62bb048e6984155c8274dd974)|
|[Page Reflow](https://texonom.com/page-reflow-f272e6b8077644ffa3b9d8ea6f435162)|
### Methods
> [[์ค์/๋ฐ์ดํฐ์ฃผ์] ์น ์ต์ ํ ๋ฐฉ์ ๋ชจ์ - 0. ์ ๋ฐ์ ์์น๊ณผ ์๋ฆฌ](https://black7375.tistory.com/72)
> [https://ui.toast.com/fe-guide/ko_PERFORMANCE](https://ui.toast.com/fe-guide/ko_PERFORMANCE)
> [๋ด ์นํ์ด์ง ์ฑ๋ฅ์ ์ด๋ป๊ฒ ์ฌ๋ฆด๊น?โ-โ์์ ](https://haragoo30.medium.com/%EB%82%B4-%EC%9B%B9%ED%8E%98%EC%9D%B4%EC%A7%80-%EC%84%B1%EB%8A%A5%EC%9D%84-%EC%96%B4%EB%96%BB%EA%B2%8C-%EC%98%AC%EB%A6%B4%EA%B9%8C-%EC%98%88%EC%A0%9C-a1800d10d4ed)
> [๋ธ๋ผ์ฐ์ ๋์์๋ฆฌ๋ฅผ ์์์ผ ํ๋ ์ด์ ๊ฐ ๋ฌด์์ธ๊ฐ์?](https://helloinyong.tistory.com/320)
### Backend performance important all time
> [My biggest React App performance boost was a backend change | Swizec Teller](https://swizec.com/blog/my-biggest-react-app-performance-boost-was-a-backend-change/)
| d24bd6750ec94196aea10856d78bb7c7 |
Web Rendering | WWW Usage | Apr 21, 2021 | Alan Jo | Alan Jo | Mar 13, 2023 | [CRP](https://texonom.com/crp-b396ccb48f844fd29b7fbd2a31fd30e4) [Browser Engine](https://texonom.com/browser-engine-5f86792f773744a88468d591d26668ac) |
### Construction Part
๋ธ๋ผ์ฐ์ ๊ฐ ์ดํดํ ์ ์๋ ๋ธ๋ผ์ฐ์ ๋ง์ ์ธ์ด๋ก ๋ฐ๊พธ๋ ์์
ํํธ
### Web Rendering Notion
|Title|
|:-:|
|[Render Tree](https://texonom.com/render-tree-03c769b6adf2440cb7fd4fa2d2e6d61d)|
|[Web Rendering Pipeline](https://texonom.com/web-rendering-pipeline-af39192ef2c745f38b43786c604f19b5)|
> [Web Animation Performance Fundamentals - How to Make Your Pages Look Smooth](https://www.freecodecamp.org/news/web-animation-performance-fundamentals/)
> [๋ ๋ ํธ๋ฆฌ(Render Tree), CRP(Critical Rendering Path)](https://onlydev.tistory.com/9)
| 50533303095e441f99b865d3203599ed |
Browser Developer Tool | Web Browser Notion | Apr 21, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 |
### Browser Developer Tool Notion
|Title|
|:-:|
|[Browser Developer Tool History](https://texonom.com/browser-developer-tool-history-0ecba063053b46a39b73a1bb7e048c4f)|
|[DOM Visualization](https://texonom.com/dom-visualization-7bbfb5ddecd148788bf22edaf2d49918)|
> [The Time Travel Debugger for Web Development](https://www.replay.io/)
| a2b69af4b88946ecb331181c5d95d635 |
|
Mini Browser | Web Browser Notion | Mar 13, 2023 | Alan Jo | Alan Jo | Mar 13, 2023 |
๋ค๋ฅธ ์ฑ์์ ๋ก๊ทธ์ธ์ฐฝ ๋ฑ์์ ์ฌ์ฉํ๋ ์น ๋ธ๋ผ์ฐ์
| fb9d2b22ef9b448a91523802afab28a9 |
|
Web Browser History | Web Browser Notion | Mar 1, 2021 | Alan Jo | Alan Jo | Jan 17, 2023 |
### Browser Past
|Title|
|:-:|
|[Mosaic browser](https://texonom.com/mosaic-browser-5329a0106408419ab5eb39f2da26fcdf)|

### Diagram
> [History of Web Browser Engines from 1990 until today](https://eylenburg.github.io/browser_engines.htm)
> [History of the browser user-agent string](https://webaim.org/blog/user-agent-string-history/)
> [๊ฐ๋ฐ์๋ค์ด ๋ฑ๋๋ฆฐ โก๏ธ๋ธ๋ ์ด๋ธ ๋ธ๋ผ์ฐ์ ..? | ๐ดํ
ํฌํธ๋ฆฌ - IT ๋ด์ค](https://www.youtube.com/watch?v=lyljGJBK1hI)
> [IE ใฎๆญดๅฒ](https://yomotsu.net/blog/2022/06/16/history-of-ie.html)
| 821b33aafc784d008ff43f32137be1f1 |
|
Web Browser Privacy | Web Browser Notion | Aug 13, 2022 | Alan Jo | Alan Jo | Aug 24, 2022 | [SNS](https://texonom.com/sns-d4276094486a47c1a20f0abc2dd0fda6) |
> [iOS Privacy: Instagram and Facebook can track anything you do on any website in their in-app browser](https://krausefx.com/blog/ios-privacy-instagram-and-facebook-can-track-anything-you-do-on-any-website-in-their-in-app-browser)
| e5e44aba148046679aa338687093b988 |
Web Browser Structure | Web Browser Notion | Feb 23, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 | [JS Engine](https://texonom.com/js-engine-57f3bcf48f424a18a6e77f07e8c5fb69) |
### Web Browser Structures
|Title|
|:-:|
|[Browser Engine](https://texonom.com/browser-engine-5f86792f773744a88468d591d26668ac)|
|[Browser UI](https://texonom.com/browser-ui-0e331edd44e647b98ad82ac78f431905)|
|[Browser UI Backend](https://texonom.com/browser-ui-backend-8e53f0bb43484a02af65dc2d3450dc4b)|
|[Browser Data Persistence](https://texonom.com/browser-data-persistence-db1323c574c940729678dabefd9e55d6)|

> [How browsers work](https://taligarsiel.com/Projects/howbrowserswork1.htm)
> [ํ๋ก ํธ์๋ ๊ฐ๋ฐ์๋ผ๋ฉด ์๊ณ ์์ด์ผ ํ ๋ธ๋ผ์ฐ์ ์ ๋์ ๊ณผ์ | ์์ฆIT](https://yozm.wishket.com/magazine/detail/1338/?fbclid=IwAR2Xfb7dRpZ9DqYe_xO0yga06tKOImMpK4uTWtXmjRVhs565shne2v-FE8k)
| a5bfecd8d75b4384995b94c1176393df |
Browser Developer Tool History | Browser Developer Tool Notion | Apr 21, 2021 | null | null | null | null |
[Venkman Javascript Debugger](https://texonom.com/venkman-javascript-debugger-35a69a34c5f84d39b538e8e625fb8a95)
### Web Developer for Firefox
ํ๋์ ์์ ํด๋ฐ์์๋ถํฐ ์์๋๋ค. Chris Pederick ์ด ๋ง๋ Web Devloper toolbar๊ฐ ๊ฐ๋ฐ์๋๊ตฌ ๋ฐ์ ์ผ๋ฑ๊ณต์
์ด ํด๋ฐ์ ๊ฐ์ ์ Disable CSS์ Disable Javascript ๊ธฐ๋ฅ
๊ณ ์๋งจํฑ๊ณผ ์น ์ ๊ทผ์ฑ ๊ฐ๋ฐ์ ๋์์ ์ฃผ๋ ๊ธฐ๋ฅ๋ค์ด ํ์๋ฆฌ์ ๋ชจ์ฌ์ ์น ๊ฐ๋ฐ์๋ค์๊ฒ๋ ์์ด์๋ ์๋ ๋๊ตฌ๋ก ์ฑ์ฅ
### Firebug
๊ฐ๋ฐ์ ๋๊ตฌ์ ์์
ํ์ ์ ์ด๋ฃจ์ด๋ธ ๊ฒ์ ๋ฒ์ 0.4 ๋ถํฐ์ธ๋ฐ
0.3์ ๊ธฐ์ ์ผ๋ก ์์ฒด DOM ๊ฒ์ฌ๊ธฐ๋ฅผ ํฌํจํ๋ ๊ฒ์ผ๋ก ์์ํด์, ์๋ฐ์คํฌ๋ฆฝํธ์ ํ์ค ๋ฐ๋์ ๋ถ๊ฒ ๋ง๋ console ๊ฐ์ฒด๋ฅผ ์ถ์
๊ท์ฐฎ๊ฒ ๋ก๊ทธ์ฑ ๋ฐ์ดํฐ๋ฅผ DOM์ ๋ฟ๋ฆด ํ์ ์์๊ณ (๊ทธ ์ ์๋ ๊ทธ๋ผ)
console ๊ฐ์ฒด ๋ํ ์กฐ๊ธ ๋ฆ์ง๋ง ECMA ํ์ค์ ๋ฑ์ฌ๋ ์พ๊ฑฐ
Firebug Lite ๊น์ง ์ถ์ํ๋๋ฐ, Firebug๋ฅผ ๋ค๋ฅธ ๋ธ๋ผ์ฐ์ ์์ ๋๋ฆฌ๊ณ ์น๊ฐ๋ฐ์ ํธ์์ฑ์ ์ฃผ๋๋ก ๊ฐ๋ฐํ ๋
์
### YSlow
์น ์ฌ์ดํธ ์ฑ๋ฅ ์ธก์ ๋๊ตฌ
### Webkit dev tools
๊ฐ๋ฐ์ ๋๊ตฌ๋ก ๋๋๋จ๊ฒฐ
ํ๊ฐ์ง ๋ถ๋ช
ํ ์ฌ์ค์, ๋ท์ค์ผ์ดํ์์ ๊ฐ์ฅ ๋จผ์ ๊ฐ๋ฐ์ ๋๊ตฌ๋ฅผ ๋ง๋ค๊ธฐ ์์ํ๊ณ , ๊ทธ ์ ์ ์ ์ด์ด๋ฐ์ ๋ชจ์ง๋ผ๊ฐ ๋จผ์ ๊ฐ๋ฐ์ ๋๊ตฌ๋ฅผ ๋ง๋ค๊ณ ์ ๋ํ ๊ฒ์ ํ๋ฆผ์๋ ์ฌ์ค
> [์น ๊ฐ๋ฐ์ ๋๊ตฌ์ ์ญ์ฌ](https://dev.to/composite/-4675)
| 0ecba063053b46a39b73a1bb7e048c4f |
DOM Visualization | Browser Developer Tool Notion | Apr 21, 2021 | null | null | null | null |
### DOM Visualizations
|Title|
|:-:|
| 7bbfb5ddecd148788bf22edaf2d49918 |
Mosaic browser | Browser Past | Jun 17, 2020 | null | null | null | null | 5329a0106408419ab5eb39f2da26fcdf |
|
Browser Data Persistence | Web Browser Structures | Feb 23, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 | db1323c574c940729678dabefd9e55d6 |
||
Browser Engine | Web Browser Structures | Aug 21, 2020 | Alan Jo | Alan Jo | Mar 13, 2023 | [HTML Layout Engine](https://texonom.com/html-layout-engine-719379b4074c4ebeb3729eaefaf992ed) [Web Rendering](https://texonom.com/web-rendering-50533303095e441f99b865d3203599ed) |
## Web Engine
์ ์ ์ค๋ ๋๋ฅผ ๋๋ฆฌ๋ ์ถ์ธ
### Browser Rendering Engines
|Title|
|:-:|
|[Blink](https://texonom.com/blink-5110ee4c98d54192b21af5086e43684c)|
|[Webkit](https://texonom.com/webkit-5a0e7821152d43eba1d26e6ba8cda222)|
|[Gecko](https://texonom.com/gecko-0825c7c730504d74a5588b4493f6ea3f)|
|[Webrender](https://texonom.com/webrender-4da419edd951408a84308c4d793cd8bb)|

> [Untitled](https://developer.mozilla.com/events/compiler-compiler-yulia-startsev/)
| 5f86792f773744a88468d591d26668ac |
Browser UI | Web Browser Structures | Feb 23, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 |
### Browser UIs
|Title|
|:-:|
| 0e331edd44e647b98ad82ac78f431905 |
|
Browser UI Backend | Web Browser Structures | Feb 23, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 |
### Browser UI Backends
|Title|
|:-:|
| 8e53f0bb43484a02af65dc2d3450dc4b |
|
Blink | Browser Rendering Engines | Feb 8, 2023 | Alan Jo | Alan Jo | Mar 13, 2023 |
## Chromium WebKit
webkit์์ ํฌํฌ๋๋ฉด์ ์นํท ์
์ง ์ค์ด๋ฌ
> [First look at Google Chrome's Blink engine running on an iPhone](https://9to5google.com/2023/03/03/first-look-google-chrome-blink-engine-iphone-ios)
> [Google experiments with non-WebKit Blink-based iOS browser](https://www.theregister.com/2023/02/03/googles_chromium_ios)
| 5110ee4c98d54192b21af5086e43684c |
|
Gecko | Browser Rendering Engines | Oct 28, 2021 | Alan Jo | Alan Jo | Mar 13, 2023 |
[๋ท์ค์ผ์ดํ](https://namu.wiki/w/%EB%84%B7%EC%8A%A4%EC%BC%80%EC%9D%B4%ED%94%84%20%EB%82%B4%EB%B9%84%EA%B2%8C%EC%9D%B4%ED%84%B0)ย ์๋๋ถํฐ ๊ฐ๋ฐ๋๋ ์์ง์ด๋ผ์ ์ค๋๋ ์น๊ณผ๋ ์ ํธํ๋๋ ํธ์ด๊ณ , ์นํ์ค์ ์ค์ํ๋ ํธ์ด๋ฉฐ ๊ฐ๋ฐ ๋จ๊ณ๋ถํฐ ์ง์์์๊ฒ
> [Untitled](https://namu.wiki/w/Gecko(%EC%97%94%EC%A7%84))
| 0825c7c730504d74a5588b4493f6ea3f |
|
Webkit | Browser Rendering Engines | Oct 28, 2021 | Alan Jo | Alan Jo | Mar 28, 2023 |
Forked from [KHTML](https://texonom.com/khtml-6fac3ef436414a2fb68f7a2670d642f1)
### Webkit Version
|Title|
|:-:|
|[WebKit1](https://texonom.com/webkit1-f442e70c06a94a3bb1e66d508383b7ef)|
|[WebKit2](https://texonom.com/webkit2-f89784cdd36c47ae9e1271143ab52120)|
> [WebKit](https://webkit.org/)
> [Apple Considering Dropping Requirement for iPhone Web Browsers to Use WebKit](https://www.macrumors.com/2022/12/14/apple-considering-non-webkit-iphone-browsers)
| 5a0e7821152d43eba1d26e6ba8cda222 |
|
Webrender | Browser Rendering Engines | Jan 15, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 | 4da419edd951408a84308c4d793cd8bb |
||
WebKit1 | Webkit Version | Oct 28, 2021 | Alan Jo | Alan Jo | Mar 13, 2023 | f442e70c06a94a3bb1e66d508383b7ef |
||
WebKit2 | Webkit Version | Mar 13, 2023 | Alan Jo | Alan Jo | Mar 13, 2023 |
๋ฉํฐ ํ๋ก์ธ์ค๋ก ์ด๋ํจ
- ์ฑ๋ฅ ๋ง์ด ๋จน์
- ๋ฉ๋ชจ๋ฆฌ ๋ง์ด ๋จน์
- ๊ตฌ์กฐ ๋ณต์กํจ
[RPC](https://texonom.com/rpc-06bea6e1df8743849ba48d574de71693) ๊ด๋ฆฌ ๋ฑ
์ฑ๊ธ ํ๋ก์ธ์ค์์ ๋ฉํฐ ํ๋ก์ธ์ค๋ก ๋ฐ๊ฟ (์ ํ ๊ฐ๋ฐ์๋ค์ ๋ณด์์ , ๊ตฌ๊ธ์ถ์ง)
์ฑ๊ธ ํญ์์ ์ฃฝ๋ ๊ฑฐ๋ฅผ ๋ชจ๋ ํญ์์ ์ฃฝ๋ ๊ฑธ๋ก ๋ฐฉ์ง < **ํ๋ก์ธ์ค๊ฐ ์ ๊ทผ์ ์ ํํ๋ ๋ณด์๋๋ฌธ**
๋ธ๋ผ์ฐ์ ๋ ๋๋ฌ์์ ui๋ก ๋ฌด์ธ๊ฐ๋ฅผ ํ๋๊ฒ ์ด๋ ค์์ง
| f89784cdd36c47ae9e1271143ab52120 |
|
BEX | Web Browser Usages | Jun 6, 2022 | Alan Jo | Alan Jo | Mar 18, 2023 |
## Browser Extension
### BEX Frameworks
|Title|
|:-:|
|[Plasmo](https://texonom.com/plasmo-f58270192d224abe87291a63ba5b08a2)|
### Github Action
> [Chrome extension upload action - GitHub Marketplace](https://github.com/marketplace/actions/chrome-extension-upload-action)
> [For your next side project, make a browser extension](https://www.geoffreylitt.com/2023/01/08/for-your-next-side-project-make-a-browser-extension.html)
| 10f46f949fc94bf4a2e174cbf871385a |
|
Browser Plugin | Web Browser Usages | Apr 26, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 |
๋ผ์ฐ์ ๊ฐ ์น์๋ฒ์ ๋ฌด์์ธ๊ฐ๋ฅผ ์์ฒญํ๋ ค๋ฉด, ํ์ด์ง๋ฅผ ์ด๋ํด์ผ๋ง ํ์ต๋๋ค. ์ฌ์ค ๊ทธ๋ ๊ฒ ์นํ์ด์ง๋ฅผ ์ด๋ํ๋ ๋ฐฉ์์ผ๋ก ๋ง๋ค์ด๋ฒ๋ฆฌ๋ฉด ์๊ฐ์ ์ผ๋ก ๋๋ฌด ๋ปฃ๋ปฃํ๊ณ ๊ตฌ๋ ธ๊ธฐ ๋๋ฌธ์ ๋ง์ ๊ผผ์๋ค์ด ๋ฑ์ฅ
- ์กํฐ๋ธ์์ค
>
> [ActiveX](https://texonom.com/activex-e1f01fb8c1f24c43ab148540e75e6cfd)
>
- ์ค๋ฒ๋ผ์ดํธ
- ์ ํ๋ฆฟ
- ํ๋์
> [HTTP์์๋ถํฐ WEBSOCKET๊น์ง](https://medium.com/@chullino/http%EC%97%90%EC%84%9C%EB%B6%80%ED%84%B0-websocket%EA%B9%8C%EC%A7%80-94df91988788)
| fdb91acd25f7489182b696edd788c031 |
|
Browser Streaming | Web Browser Usages | Apr 30, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 |
> [Mighty is a Chromium Mac browser streamed from the cloud - 9to5Google](https://9to5google.com/2021/04/27/mighty-browser/?utm_source=tldrnewsletter)
| 9f1d9846a4ac4aa8916d171f8897ce8c |
|
Browser URL | Web Browser Usages | May 11, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 |
1. [RFC 1738](https://texonom.com/rfc-1738-eff5278f92394607afae5688b91db212) ์ ๋ฐ๋ผ url ์ ํจ์ฑ ๊ฒ์ฌ
2. [DNS](https://texonom.com/dns-ccf579deb2fb4d8a85d39191da69168a) Request
3. Set Protocol
4. Content Negotiation
5. Get Response Stream
6. Decode Response Stream
7. User Response
> [๋ธ๋ผ์ฐ์ ์ google.com์ ์น๋ฉด ๋ฌด์จ ์ผ์ด ์ผ์ด๋ ๊น? (์๋, ์ง์ง๋ก) - ๋คํธ์ํฌํธ](https://velog.io/@rtyu1120/%EB%B8%8C%EB%9D%BC%EC%9A%B0%EC%A0%80%EC%97%90-google.com%EC%9D%84-%EC%B9%98%EB%A9%B4-%EB%AC%B4%EC%8A%A8-%EC%9D%BC%EC%9D%B4-%EC%9D%BC%EC%96%B4%EB%82%A0%EA%B9%8C-%EC%95%84%EB%8B%88-%EC%A7%84%EC%A7%9C%EB%A1%9C-%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC%ED%8E%B8#%EC%9D%B4%EA%B1%B0-%EC%82%AC%EC%9D%B4%ED%8A%B8-%EC%A3%BC%EC%86%8C-%EB%A7%9E%EB%82%98)
| 77995f10ef3c4e38abbfac43e32cf18b |
|
Headless Browser | Web Browser Usages | May 10, 2021 | Alan Jo | Alan Jo | Jun 13, 2023 | [Crawling](https://texonom.com/crawling-437b19c867ab48cebb0baf7f10884fa9) [pyautogui](https://texonom.com/pyautogui-f75d1fe674684dd697fd350689029e20) [AHK](https://texonom.com/ahk-64a30e02443d46f89054b3ff37937b03) |
http head๋ง๊ณ ์๊ฐ์ head๊ฐ ์๋ ๋ธ๋ผ์ฐ์
### Headless Browser Notion
|Title|
|:-:|
|[Web Interoperable Runtime](https://texonom.com/web-interoperable-runtime-3cacd4b78d7d4727881bc086cadca5b8)|
|[Minimum Common Web Platform API](https://texonom.com/minimum-common-web-platform-api-524af882faca40e887d50078d4b301b3)|
### Headless Browser Usages
|Title|
|:-:|
|[Headless Browser Framework](https://texonom.com/headless-browser-framework-c0c0ea410b0c498bb10fcd3eb3e8d0a2)|
|[Crawling](https://texonom.com/crawling-437b19c867ab48cebb0baf7f10884fa9)|
|[Browser Test](https://texonom.com/browser-test-cad146013d0f4b48a5769f21ef9997b8)|
### Webdriver
> [Downloads - ChromeDriver - WebDriver for Chrome](https://chromedriver.chromium.org/downloads)
> [https://www.browserstack.com/guide/playwright-vs-selenium](https://www.browserstack.com/guide/playwright-vs-selenium)
[https://antoinevastel.com/bot detection/2023/02/19/new-headless-chrome.html](https://antoinevastel.com/bot%20detection/2023/02/19/new-headless-chrome.html)
### Crawler
> [ScraperAPI - The Proxy API For Web Scraping](https://www.scraperapi.com/)
| 8898cbe43feb4a7eb66414d86056074a |
Shell Browser | Web Browser Usages | Apr 3, 2022 | Alan Jo | Alan Jo | Aug 24, 2022 |
### Shell Browsers
|Title|
|:-:|
|[Browsh](https://texonom.com/browsh-117cb109197c4c8c9e1a119e31b3f238)|
| 0f0b576e1bcd4c0e877ea3a7170953f4 |
|
Web Browser Automation | Web Browser Usages | Jan 16, 2022 | Alan Jo | Alan Jo | Aug 24, 2022 |
> [ํ ์คใ
ฃSLASH 22 - ๊ธ์ต์ ๋ชจ๋ ์๊ฐ์ ์๋ํํ ๋ ๊น์ง Toss Crazy Activation](https://youtu.be/ScZT51pZ5MQ)
> [Automa](https://www.producthunt.com/posts/automa-2)
| 9b8d62705b8949cdbfff947ad1185f1b |
|
Plasmo | BEX Frameworks | Jun 6, 2022 | null | null | null | [React](https://texonom.com/react-6be17656bd6e4fc79074ced55e7f61fd) [plasmo](https://github.com/PlasmoHQ/plasmo) |
> [Plasmo | Iterate on every push](https://www.plasmo.com/)
> [Documentation | Plasmo](https://docs.plasmo.com/)
| f58270192d224abe87291a63ba5b08a2 |
ActiveX | Browser Plugin | null | null | null | null | null |
[Korean Active X](https://texonom.com/korean-active-x-2436cb43f2eb4baaad46b9139058bbfc)
| e1f01fb8c1f24c43ab148540e75e6cfd |
Korean Active X | ActiveX | null | null | null | null | null |
- ๋งํ ๊ธ์ตํด ๋นํ์ฑํ
- veraport
- ahnlab
- nprotect
need to be started
- sevice ์ anysign4pc ์์
- touchen
chrome ํ์ฅ ๊น์์ค์ผ
> [์น์ง๋๋ nProtect Online Security ์๋ ์คํ ์ค์ ๋ง๊ธฐ์ ์ฌ์ฉ๋ฒ. : ํด๋ฆฌ์](https://www.clien.net/service/board/lecture/11144722)
> [๊ณ ์ฉ๋ณดํ ํผ๋ณดํ์๊ฒฉ ์ด๋ ฅ๋ด์ญ์ ์ ๋ถ24 ๋ฐ๊ธ๋ฐฉ๋ฒ](http://blog.naver.com/PostView.nhn?blogId=kwanssss&logNo=221781554184)
> [Untitled](https://www.gov.kr/myresultlist/AA040_my_result_list.jsp?q=7D3C23E7189E001EDA3F7306C63F985D0F4007D219A607&charset=EUC-KR)
### mac
> [[์ด์ด์๋ํ] ๋งฅ MacOS์์ ํ๋ก๊ทธ๋จ์ค์น์์ด ์ ๋ถ24๋ก ์ ์๋ฏผ์ ์ฒ๋ฆฌํ๊ธฐ : ํด๋ฆฌ์](https://www.clien.net/service/board/lecture/15339180)
| 2436cb43f2eb4baaad46b9139058bbfc |
****Minimum Common Web Platform API**** | Headless Browser Notion | Jul 2, 2022 | Alan Jo | Alan Jo | Aug 24, 2022 |
### [Web API](https://texonom.com/web-api-4fbf3abc6d7e4d3c93c8024cd4db33e9) [proposal-common-minimum-api](https://github.com/wintercg/proposal-common-minimum-api)
**document the minimal collection of Web Platform APIs that ought to be implemented by Web-interoperable runtimes**
> [Minimum Common Web Platform API](https://common-min-api.proposal.wintercg.org/)
| 524af882faca40e887d50078d4b301b3 |
|
Web Interoperable Runtime | Headless Browser Notion | Jul 2, 2022 | Alan Jo | Alan Jo | Aug 24, 2022 |
[WinterCG](https://texonom.com/wintercg-a676b764afb24e2bb373f8691e6212bc)
### Web Interoperable Runtimes
- [CloudFlare Workers](https://texonom.com/cloudflare-workers-a9ce69812ead4e00b4a09f7942fdd39c)
- [Vercel Edge Function](https://texonom.com/vercel-edge-function-090d6ac6ac3b441388a176c3eddab8ad)
> [WinterCG](https://github.com/wintercg)
> [admin/charter.md at main ยท wintercg/admin](https://github.com/wintercg/admin/blob/main/charter.md)
> [WinterCG](https://wintercg.org/)
| 3cacd4b78d7d4727881bc086cadca5b8 |
|
WinterCG | Web Interoperable Runtime | null | null | null | null | null |
### *[Web-interoperable Runtimes Community Group](https://wintercg.org/)*
- [Cloudflare](https://texonom.com/cloudflare-878e4d0e330a430f9b2fe653de49c523)
- [Vercel](https://texonom.com/vercel-0f5cd4d40aad4ff49cb8ad912e3a7bd8)
- [Deno](https://texonom.com/deno-3fd0a65da0814eedb866b4912f03f44c)
- [ByteDance](https://texonom.com/bytedance-84c599c14af94d56a4e87ce7e3270688)
- [Shopify](https://texonom.com/shopify-b227a8ce88db477394eaaa610b659ae1)
> [WinterCG](https://wintercg.org/)
| a676b764afb24e2bb373f8691e6212bc |
Browser Test | Headless Browser Usages | Jun 20, 2021 | Alan Jo | Alan Jo | Jun 13, 2023 |
### Chrome for Testing
> [Chrome for Testing: reliable downloads for browser automation - Chrome Developers](https://developer.chrome.com/en/blog/chrome-for-testing/)
| cad146013d0f4b48a5769f21ef9997b8 |
|
Crawling | Headless Browser Usages | Aug 24, 2022 | Alan Jo | Alan Jo | Apr 21, 2023 | [Automation](https://texonom.com/automation-14c37bab53954d60ba1be51cf1f93c1d) [Headless Browser Framework](https://texonom.com/headless-browser-framework-c0c0ea410b0c498bb10fcd3eb3e8d0a2) |
## Spidering
### UI ๋ง ์ด์ฉํ์ง ๋ง๊ณ API XHR Catchํด์ ์ด์ฉํ๋ ๊ฒ ํต์ฌ
### Crawling Tools
|Title|
|:-:|
|[Apify](https://texonom.com/apify-993a6b44a19e4fc580f27c41567681c8)|
|[Katana cli](https://texonom.com/katana-cli-d91b5f4be3924e53b0b06573e9e4de0c)|
> [streetmerchant - General](https://www.jef.buzz/streetmerchant/help/general/)
| 437b19c867ab48cebb0baf7f10884fa9 |
Headless Browser Framework | Headless Browser Usages | Aug 24, 2022 | Alan Jo | Alan Jo | Aug 24, 2022 |
### Headless Browser Frameworks
|Title|
|:-:|
|[Puppeteer](https://texonom.com/puppeteer-0b2e06712863425d840cfd8a2f5f5ff6)|
|[Playwright](https://texonom.com/playwright-b046b976f3cd41e88ab90dc871ecd8ad)|
|[Selenium](https://texonom.com/selenium-787ae933d74246f5971b5ee16284f10e)|
|[Cypress](https://texonom.com/cypress-0bc645835ba44175b07fc5bd82b04692)|
| c0c0ea410b0c498bb10fcd3eb3e8d0a2 |
|
Apify | Crawling Tools | Aug 24, 2022 | Alan Jo | Alan Jo | Apr 18, 2023 |
### Apify Usages
|Title|
|:-:|
|[Crawlee](https://texonom.com/crawlee-4c11bd48bb1944ea91d1defe69a7556b)|
> [Web Scraping, Data Extraction and Automation ยท Apify](https://apify.com/)
| 993a6b44a19e4fc580f27c41567681c8 |
|
Katana cli | Crawling Tools | Nov 9, 2022 | Alan Jo | Alan Jo | Apr 18, 2023 |
[katana](https://github.com/projectdiscovery/katana)
| d91b5f4be3924e53b0b06573e9e4de0c |
|
Crawlee | Apify Usages | Aug 24, 2022 | Alan Jo | Alan Jo | Aug 24, 2022 |
[crawlee](https://github.com/apify/crawlee)
| 4c11bd48bb1944ea91d1defe69a7556b |
|
Cypress | Headless Browser Frameworks | May 10, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 | 0bc645835ba44175b07fc5bd82b04692 |
||
Playwright | Headless Browser Frameworks | May 10, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 |
### Playwright Notion
|Title|
|:-:|
|[folio framework](https://texonom.com/folio-framework-7e9583a9949a4b7dbdee940e4e8b329b)|
> [Introduction | Playwright](https://playwright.dev/docs/next/test-intro/)
| b046b976f3cd41e88ab90dc871ecd8ad |
|
Puppeteer | Headless Browser Frameworks | Oct 12, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 | [Lighthouse](https://texonom.com/lighthouse-342829b9a9c94c969e436abc8332f676) [undefined](https://github.com/jtassin/pending-xhr-puppeteer) [ Chrome](https://texonom.com/chrome-6840dce8714641c6a8578a34793aff61) |
### Great Lighthouse Integration
[Puppeteer Page](https://texonom.com/puppeteer-page-20f0d0d5d8334812b96c496f614bc5f7)
[Puppeteer Browser](https://texonom.com/puppeteer-browser-6c55713b226a4599925d896de7c634a2)
[fuite](https://texonom.com/fuite-9b9556c67cd6491eba199ff42a37d24e)
> [GitHub - puppeteer/puppeteer: Headless Chrome Node.js API](https://github.com/puppeteer/puppeteer)
> [Untitled](https://pptr.dev/)
| 0b2e06712863425d840cfd8a2f5f5ff6 |
Selenium | Headless Browser Frameworks | Jul 28, 2020 | Alan Jo | Alan Jo | Aug 24, 2022 |
### selenium Notion
|Title|
|:-:|
|[Selenium JS](https://texonom.com/selenium-js-1eaeeb8adc494e31a03c31c0767b3e43)|
|[Selenium Python](https://texonom.com/selenium-python-3f137689616e4b1f877d5f800d991aeb)|
### selenium Errors
|Title|
|:-:|
|[selenium FileNotFoundError: [WinError 2] The system cannot find the file specified](https://texonom.com/selenium-filenotfounderror-winerror-2-the-system-cannot-find-the-file-specified-4a90dccef1a142e7a457ecf93e44c2eb)|
| 787ae933d74246f5971b5ee16284f10e |
|
folio framework | Playwright Notion | May 10, 2021 | null | null | null | null |
### test framework to build your own test frameworks
Foundation for the Playwright test runner
> [microsoft/folio](https://github.com/microsoft/folio?utm_source=tldrnewsletter)
| 7e9583a9949a4b7dbdee940e4e8b329b |
fuite | Puppeteer | null | null | null | null | null |
### check memory leak
```typeexport async function setup (page) { await page.type('#username', 'myusername'); await page.type('#password', 'mypassword'); await page.click('#submit');}```
[fuite](https://github.com/nolanlawson/fuite)
| 9b9556c67cd6491eba199ff42a37d24e |
Puppeteer Browser | Puppeteer | null | null | null | null | null | 6c55713b226a4599925d896de7c634a2 |
|
Puppeteer Page | Puppeteer | null | null | null | null | null |
[Puppeteer Page evaluate()](https://texonom.com/puppeteer-page-evaluate-93d0a3adf1c245d49357d5c600037c02)
[Puppeteer Page click()](https://texonom.com/puppeteer-page-click-5145db17582b49d49107306816826d72)
[Puppeteer Page waitForNavigation()](https://texonom.com/puppeteer-page-waitfornavigation-e49e013f51174b1f9bce875bd7942a83)
```typeconst page = await browser.newPage()const pendingXHR = new PendingXHR(page)page.setViewport({ width: 720, height: 1280 })page.on('request', r => r.resourceType() === 'xhr' && console.log('XHR: ' + r.url()))page.on('response', r => console.log('response: ' + r.url()))page.on('console', msg => console.log('PAGE LOG:', msg.text()))``` | 20f0d0d5d8334812b96c496f614bc5f7 |
Puppeteer Page click() | Puppeteer Page | null | null | null | null | null | 5145db17582b49d49107306816826d72 |
|
Puppeteer Page evaluate() | Puppeteer Page | null | null | null | null | null | 93d0a3adf1c245d49357d5c600037c02 |
|
Puppeteer Page waitForNavigation() | Puppeteer Page | null | null | null | null | null |
### waitUntil
- `networkidle2`
- `domcontentloaded`
- `DOMContentLoaded`
- `networkidle2`
- `load`
| e49e013f51174b1f9bce875bd7942a83 |
null | selenium Errors | Jul 28, 2020 | null | null | null | null |
check chrome version and chromedriver
> [Selenium FileNotFoundError: [WinError 2] The system cannot find the file specified - Programmer Sought](https://www.programmersought.com/article/6747705571/)
| 4a90dccef1a142e7a457ecf93e44c2eb |
Selenium JS | selenium Notion | May 10, 2021 | null | null | null | null |
> [[jstest] selenium + nodeJS #1 - Bsidesoft co.](https://www.bsidesoft.com/2196)
| 1eaeeb8adc494e31a03c31c0767b3e43 |
Selenium Python | selenium Notion | May 10, 2021 | null | null | null | null |
### Example
> [ํ์ด์ฌ์ ์ด์ฉํ selenium ์ฌ์ฉ๋ฒ ๋ฐ ๋์ ์น ์คํฌ๋ํ](https://engkimbs.tistory.com/896)
| 3f137689616e4b1f877d5f800d991aeb |
Browsh | Shell Browsers | Apr 3, 2022 | null | null | null | [browsh](https://github.com/browsh-org/browsh) |
> [Browsh](https://www.brow.sh/)
| 117cb109197c4c8c9e1a119e31b3f238 |
Chromium | Web Browsers | Jun 23, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 | [Blink](https://texonom.com/blink-5110ee4c98d54192b21af5086e43684c) |
### Chromium Distributions
|Title|
|:-:|
|[Arc Browser](https://texonom.com/arc-browser-0fbe01d333b543daa2fc88497a9d8695)|
|[ Chrome](https://texonom.com/chrome-6840dce8714641c6a8578a34793aff61)|
|[Naver Whale](https://texonom.com/naver-whale-75f3eabf87fc492381ce421e7068269b)|
|[Microsoft Edge](https://texonom.com/microsoft-edge-fc31a981537e462981e378a51b4f52b8)|
|[Brave Browser](https://texonom.com/brave-browser-d27095c5e3a44580bef4dc474ab9aa25)|
|[Carbonyl](https://texonom.com/carbonyl-25f1996753c94d0784e56fd830623cd4)|
|[Opera Browser](https://texonom.com/opera-browser-c8c453ea87574b5b8608102f0436a439)|
### Chromium Notion
|Title|
|:-:|
|[Chromium History](https://texonom.com/chromium-history-796134b5ad3f45dca98e8ee916ae35fb)|
|[Chromium Structure](https://texonom.com/chromium-structure-7180063e12054a03b6c95702949bc95c)|
> [What willwould a Chromium-only Web look like?](https://www.mnot.net/blog/2022/06/22/chromium-only)
| 9bc87c1b408c474bb33ae846537b9d5b |
Firefox | Web Browsers | Apr 21, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 | [Browser Developer Tool](https://texonom.com/browser-developer-tool-a2b69af4b88946ecb331181c5d95d635) @utm_source |
[Firefox-UI-Fix](https://github.com/black7375/Firefox-UI-Fix)
[Firefox Feature](https://texonom.com/firefox-feature-af054640a67b4ea7993ed4c12bbe4585)
[Firefox History](https://texonom.com/firefox-history-515d2c19b27d4115a014c77f01b8842b)
| 5d523c1019494cc7a1f510cfe305df1e |
Internet Explorer | Web Browsers | May 23, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 |
### Internet Explorer Versions
|Title|
|:-:|
> [PSA: Last chance to browse using Microsoft's Internet Explorer is this week](https://9to5mac.com/2022/06/13/microsoft-internet-explorer-retires/)
| dbfdaccbbe87484bbbfcffc1615ec09c |
|
Netscape | Web Browsers | Apr 21, 2021 | Alan Jo | Alan Jo | Aug 24, 2022 |
[Venkman Javascript Debugger](https://texonom.com/venkman-javascript-debugger-35a69a34c5f84d39b538e8e625fb8a95)
| 89e127e41ab3467caf3f2a12d089fd5b |
|
Safari | Web Browsers | Dec 7, 2020 | Alan Jo | Alan Jo | Aug 24, 2022 |
### Lucky IE
> [oblador/hush](https://github.com/oblador/hush)
| 0f653403ada94ac294d1496d52adcaf9 |
|
Tor Browser | Web Browsers | Mar 11, 2022 | Alan Jo | Alan Jo | Apr 4, 2023 |
> [The Tor Projectโs new privacy-focused browser doesnโt use the Tor network](https://www.theverge.com/2023/4/3/23665477/mullvad-browser-tor-vpn-privacy-browser)
> [Twitter is launching a Tor service for more secure and private tweeting](https://www.theverge.com/2022/3/8/22967843/twitter-tor-onion-service-version-launch)
| 33da373943b240f0aa10e262edabb6c4 |
|
Arc Browser | Chromium Distributions | Feb 22, 2023 | Alan Jo | Alan Jo | Apr 2, 2023 |
## Maybe will be a game changer
์๋ก์ด ๋ธ๋ผ์ฐ์ ๋ผ ๊ฑฐ๋ถ๊ฐ ๋๋๊ฒ ํฐ ์ฅ๋ฒฝ, ํ์ง๋ง ์จ๋ณด
- ํญ ๋ง์ ๊ฒ ํจ์จ์ ์ด๊ณ ์ง๊ด์ ์ผ๋ก ์ ๋ฆฌ๊ฐ๋ฅ (multi tasking)
- ์ฌ๋ฌ ํญ์ ์บ๋ฒ์ค์ฒ๋ผ ๋ผ์ด๋ธ๋ก ๋ค๋ฃฐ ์ ์๋ easel ๊ธฐ๋ฅ
- ํฌ๋กฌ์ผ๋ก๋ถํฐ ์ต์คํ
์
๊ณผ ๋น๋ฐ๋ฒํธ ๋ฑ ์ฌ์ด migration
- ์์ ui ์ ํธ๋ฆฌํ ux
### Arc Browser Usages
|Title|
|:-:|
### Mobile
> [Arc Browser Review: 10 Reason Why YOU Should Switch!](https://www.youtube.com/watch?v=I1MRsFRESbY)
> [Arc from The Browser Company](https://arc.net/)
> [The Browser Company | Building Arc](https://thebrowser.company/)
> [Arcโs mobile browser is here โ and itโs not really a web browser at all](https://www.theverge.com/2023/3/30/23662130/arc-mobile-browser-hands-on-ios)
| 0fbe01d333b543daa2fc88497a9d8695 |
|
Brave Browser | Chromium Distributions | Jun 28, 2020 | Alan Jo | Alan Jo | Mar 13, 2023 |
[Brave Browser Nontracking Search](https://texonom.com/brave-browser-nontracking-search-0fd72e7598be45748b50fc5e26d60e2f)
[BAT](https://texonom.com/bat-2d248ff330b34fa3a12803575779a294)
### crypto wallet
> [Brave browser now includes a built-in crypto wallet | Engadget](https://www.engadget.com/brave-browser-crypto-wallet-170011074.html)
### Private Information Issues
๋ฐ์ด๋ธ์ค๋ ์ ํด๋จน๊ณ ๊ณ ๊ฐ ํ
> [Brave is launching its own search engine with the help of ex-Cliqz devs and tech](https://techcrunch.com/2021/03/03/brave-is-launching-its-own-search-engine-with-the-help-of-ex-cliqz-devs-and-tech/?utm_source=tldrnewsletter)
> [ํ๋ผ์ด๋ฒ์ ์น๋ธ๋ผ์ฐ์ ๋ธ๋ ์ด๋ธ์ ๋ฐฐ์ ](https://zdnet.co.kr/view/?no=20200609110637)
> [Brave's search engine lets you customize your results](https://www.theverge.com/2022/6/22/23179067/brave-search-engine-apply-custom-rankings-filters-goggles)
| d27095c5e3a44580bef4dc474ab9aa25 |
|
Carbonyl | Chromium Distributions | Feb 12, 2023 | Alan Jo | Alan Jo | Mar 13, 2023 |
โฃ
| 25f1996753c94d0784e56fd830623cd4 |
|
Chrome | Chromium Distributions | Dec 23, 2019 | Alan Jo | Alan Jo | Jun 12, 2023 |
Chrome์ ๊ฒฝ์ฐ, ๊ฐ ์ค๋ ๋๋ง๋ค ๋ณ๋์ ๊ฒฉ๋ฆฌ๋(isolate) ์๋ก์ด V8 ์์ง์ด ํ ๋น๋๋ฉฐ, ์ปดํ์ผ๋ ์ฝ๋๋ JavaScript ๊ฐ์ฒด ๋ํ ๊ณต์ ๋์ง ๋ชปํ๋ค
### Chrome Notion
|Title|
|:-:|
|[Chrome OS](https://texonom.com/chrome-os-c9034eb8a2b94905aaae30ca909ed8c1)|
|[Build chrome extension](https://texonom.com/build-chrome-extension-a4d701da024a4ed3a5d076520f376d3b)|
|[Chrome Version](https://texonom.com/chrome-version-86eca42a467e4477b67a17f6e314d5e2)|
|[Chrome History](https://texonom.com/chrome-history-8a8f685603164bca89bcc180e9afd30d)|
### Chrome Features
|Title|
|:-:|
|[Chrome Dev Tool](https://texonom.com/chrome-dev-tool-78763f81a6c94c2e89f3448222e1cd3d)|
|[Chrome Maximize](https://texonom.com/chrome-maximize-3431c1f0800f474d9aeafe3b2dfa680d)|
|[Chrome Cache](https://texonom.com/chrome-cache-145fc384193443d78068bfeb6db3b907)|
|[ChromeCast](https://texonom.com/chromecast-70e1b6c0cc954ee4b2de9f53ca349032)|
|[Chrome Task Manager](https://texonom.com/chrome-task-manager-51eb2b9cba6142ed844b221152a1de7f)|
|[Chrome Flags](https://texonom.com/chrome-flags-8ba366a5dd74496bb21be366b272d1ea)|
|[Chrome URL](https://texonom.com/chrome-url-8a3915033535400eadef7540e9a5540e)|
|[Chrome Extension](https://texonom.com/chrome-extension-4ceecaa8e80d412a8740372b47011b1b)|
|[Chrome cli](https://texonom.com/chrome-cli-408e01e793dc46a59b470ced9ad5bc02)|
### Version Roadmap
> [Chrome Platform Status](https://chromestatus.com/roadmap)
> [GoogleChrome](https://github.com/GoogleChrome?type=source)
> [GoogleChromeLabs](https://github.com/GoogleChromeLabs?type=source)
| 6840dce8714641c6a8578a34793aff61 |
|
Microsoft Edge | Chromium Distributions | May 11, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 |
### Bullshit idiot program
- canโt exit the program by alt + f4
- canโt uninstall
- auto install after update
- canโt focus another ui when It starts to answer microsoft
fuck microsoft do not doing shit
### How to uninstall permanently
> [How to uninstall Microsoft Edge](https://www.tomsguide.com/how-to/how-to-uninstall-microsoft-edge)
> [Microsoft Edge Collections go full-on Pinterest with inspiration feed and sharing](https://www.theverge.com/2022/6/28/23186775/microsoft-edge-collections-pinterest-inspiration-feed-sharing)
> [Untitled](https://www.xda-developers.com/microsoft-edge-built-in-vpn-powered-cloudflare)
> [Microsoft Edge surpasses Safari as the second most popular desktop browser](https://9to5mac.com/2022/05/03/microsoft-edge-surpasses-safari-as-the-second-most-popular-desktop-browser)
| fc31a981537e462981e378a51b4f52b8 |
|
Naver Whale | Chromium Distributions | Jun 23, 2022 | Alan Jo | Alan Jo | Mar 13, 2023 | [Naver](https://texonom.com/naver-8b9910e9e9e641479f340f45f5304ce3) | 75f3eabf87fc492381ce421e7068269b |
|
Opera Browser | Chromium Distributions | Oct 29, 2020 | Alan Jo | Alan Jo | Apr 30, 2023 |
[Opera One](https://texonom.com/opera-one-62afd6770caf424d91e044ebbb750370)
> [Opera now has a game engine to go with its gamer-focused browser](https://www.engadget.com/opera-buys-gamemaker-studio-2-developer-yoyo-games-160045897.html?ncid=txtlnkusaolp00000618)
> [Opera browser now allows emoji-only web addresses](https://www.theverge.com/2022/2/14/22932918/opera-browser-emoji-only-web-addresses-urls-yat)
| c8c453ea87574b5b8608102f0436a439 |
|
BAT | Brave Browser | null | null | null | null | null | 2d248ff330b34fa3a12803575779a294 |
|
Brave Browser Nontracking Search | Brave Browser | null | null | null | null | null |
> [Brave's nontracking search engine is now in beta](https://techcrunch.com/2021/06/22/braves-non-tracking-search-engine-is-now-in-beta/?utm_source=tldrnewsletter)
| 0fd72e7598be45748b50fc5e26d60e2f |
Chrome Ad | Chrome Features | Sep 9, 2023 | Alan Jo | Alan Jo | Sep 9, 2023 |
> [Google gets its way, bakes a user-tracking ad platform directly into Chrome](https://arstechnica.com/gadgets/2023/09/googles-widely-opposed-ad-platform-the-privacy-sandbox-launches-in-chrome)
| cf39842f8bb5405c8eb428c7fb30b9a7 |
|
Chrome Cache | Chrome Features | Feb 12, 2020 | Alan Jo | Alan Jo | Mar 13, 2023 |

1. ํฌ๋กฌ ๋ธ๋ผ์ฐ์ ์ฐ์ธก ์๋จ ์ต์
์ ํ
2. ๋๊ตฌ ๋๋ณด๊ธฐ
3. ์ธํฐ๋ท ์ฌ์ฉ๊ธฐ๋ก ์ญ์
```type<script language="JavaScript" src="js/myscript.js?n=1"></script>```
> [Clear the cache in JavaScript](https://stackoverflow.com/questions/1011605/clear-the-cache-in-javascript)
> [Clear cache & cookies](https://support.google.com/accounts/answer/32050?co=GENIE.Platform%3DDesktop&hl=en)
| 145fc384193443d78068bfeb6db3b907 |
|
Chrome cli | Chrome Features | Jul 25, 2021 | Alan Jo | Alan Jo | Mar 13, 2023 |
- --force-device-scale-factor=1.0
- set user
| 408e01e793dc46a59b470ced9ad5bc02 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.