2021/11 3

Kafka - 튜토리얼

Kafka 토크ON 77차. 아파치 카프카 입문 1강 - Kafka 기본개념 및 생태계 | T아카데미 🐥카프카 입문과 활용 강좌-티아카데미🐥 - 데브원영 DVWY 📝강의 - 아파치 카프카 소스코드 - github.com/AndresonCho/tacademy-kafaka 아파치 카프카 Lag 모니터링 대시보드 만들기 아파치 카프카 Lag 모니터링 대시보드 만들기 - 데브원영 kafka-lag-dashboard - github.com telegraf 메트릭을 수집, 처리, 집계 및 작성하기 위한 에이전트 - github.com telegraf EXTERNAL_PLUGINS - telegraf Kafka Java Client Kafka Client - 3rd party language Kafka Burrow(..

server-side 2021.11.28

Web Component 를 만드는 모든 방법 - 2021-11-18

All the Ways to Make a Web Component - Nov 2021 Update web components base libraries - @open-wc 컨텐츠용 디자인 웹컴포넌트 라이브러리 Content Component Libraries - @open-wc const template = document.createElement('template'); template.innerHTML = ` - +`; class MyCounter extends HTMLElement { constructor() { super(); this.count = 0; this.attachShadow({ mode: 'open' }); } connectedCallback() { this.shadowRoot.appe..

lang/front 2021.11.18

Build a Website Accessibility Tester With JavaScript & Pa11y

Node.js 웹 접근성 테스트 도구 npm i express pa11y # index.js const pa11y = require('pa11y') async function run() { const response = await pa11y('https://bluebreeze.co.kr') console.log(response) } run() $ node index.js { documentTitle: 'Blue Breeze', pageUrl: 'https://bluebreeze.co.kr/', issues: [ { code: 'WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.InputText.Name', type: 'error', typeCode: 1, message: 'Thi..

lang/node 2021.11.10
반응형