9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
5.3 KiB
5.3 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-chrome | Chrome | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Chrome
매 한 줄
"매 web platform 의 de-facto reference engine". Chrome 은 Blink rendering + V8 JS + multi-process architecture 의 매 dominant browser (2026 ~65% global share). 매 web standard 의 첫 ship 자, DevTools 의 industry-standard 디버깅 환경, Chromium 의 매 Edge / Brave / Arc / Opera 의 기반.
매 핵심
매 architecture
- Multi-process: browser, renderer (per site), GPU, network, utility — sandbox isolation
- Site Isolation: each site → separate process (Spectre 방어)
- Blink: rendering engine (WebKit fork)
- V8: JS engine (TurboFan, Maglev, Sparkplug, Ignition tiers)
- Skia: 2D graphics
- Mojo: IPC
매 DevTools panel
- Elements: DOM + CSS inspect, computed, layout
- Console: REPL, log, error
- Sources: debugger, breakpoint, snippet
- Network: request waterfall, throttling
- Performance: flame chart, FPS, layout shift
- Application: storage, service worker, cache, manifest
- Lighthouse: audit (perf, a11y, SEO, PWA)
- Recorder: user flow capture + replay
매 key feature (2026)
- WebGPU (stable)
- View Transitions API
- Speculation Rules (prerender)
- Origin Trials (experimental opt-in)
- Built-in Gemini Nano (on-device LLM)
- WebAssembly GC + Tail Call
매 응용
- Web 앱 dev (DevTools).
- Extension dev (MV3).
- Headless automation (Puppeteer, Playwright).
- Performance profiling (Lighthouse CI).
- PWA distribution.
💻 패턴
DevTools console snippet
// 모든 image lazy 의 강제
$$('img').forEach(img => img.loading = 'lazy');
// Performance mark
performance.mark('start');
// ... work
performance.mark('end');
performance.measure('work', 'start', 'end');
console.table(performance.getEntriesByName('work'));
Lighthouse CI
# .github/workflows/lighthouse.yml
- uses: treosh/lighthouse-ci-action@v12
with:
urls: |
https://example.com/
https://example.com/about
uploadArtifacts: true
temporaryPublicStorage: true
Puppeteer (headless)
import puppeteer from 'puppeteer';
const browser = await puppeteer.launch({ headless: 'new' });
const page = await browser.newPage();
await page.goto('https://example.com');
const title = await page.title();
await page.screenshot({ path: 'shot.png', fullPage: true });
await browser.close();
Extension (MV3) — Service Worker
// manifest.json
{
"manifest_version": 3,
"name": "Tab Counter",
"version": "1.0",
"permissions": ["tabs", "storage"],
"action": { "default_popup": "popup.html" },
"background": { "service_worker": "sw.js" }
}
// sw.js
chrome.tabs.onCreated.addListener(async () => {
const tabs = await chrome.tabs.query({});
await chrome.action.setBadgeText({ text: String(tabs.length) });
});
Speculation Rules (prerender)
<script type="speculationrules">
{
"prerender": [{
"where": { "href_matches": "/products/*" },
"eagerness": "moderate"
}]
}
</script>
chrome:// internals (debug)
chrome://inspect — devtools for remote / node
chrome://flags — experimental feature toggle
chrome://net-internals — network event log
chrome://gpu — GPU + WebGPU status
chrome://tracing — perfetto trace
chrome://version — V8 / Blink version
CDP (Chrome DevTools Protocol)
import CDP from 'chrome-remote-interface';
const client = await CDP();
const { Network, Page } = client;
await Network.enable();
await Page.enable();
Network.requestWillBeSent((params) => console.log(params.request.url));
await Page.navigate({ url: 'https://example.com' });
매 결정 기준
| 상황 | Approach |
|---|---|
| Web app dev | DevTools (Elements, Network, Performance) |
| Perf audit | Lighthouse / Lighthouse CI |
| E2E test | Playwright (Chrome / Firefox / WebKit) |
| Scraping / automation | Puppeteer (Chromium native) |
| Cross-browser test | Playwright + BrowserStack |
| Privacy-focused user | Brave / Firefox |
기본값: Chrome stable + Lighthouse CI + Playwright.
🔗 Graph
- 부모: Chromium
- 변형: Arc
- 응용: Lighthouse
- Adjacent: V8 · Blink
🤖 LLM 활용
언제: DevTools workflow, extension scaffolding, headless automation 의 generation. 언제 X: 매 cross-browser compat 매 critical (Firefox / Safari 의 also test).
❌ 안티패턴
- Chrome-only 가정: vendor-prefixed
-webkit-API 의 의존 — 매 standard 의 사용. - Manifest V2: deprecated — 매 MV3 + service worker.
- DevTools throttling 의 무시: prod 의 slow 3G 시 불상.
console.log의 prod ship: bundle bloat + privacy — 매 strip plugin.
🧪 검증 / 중복
- Verified (Chrome Developers docs, Chromium source, web.dev).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Chrome architecture + DevTools + MV3 + 2026 features |