1. [Redis] 기본 명령어

    strings

    • set:
    • set <key> <value>
    • key-value 저장
    • get:
    • get <key>
    • key에 해당하는 value 조회
    • del:
    • del <key [key ...]>
    • key를 삭제
    127.0.0.1:6379> set apple 100
    OK
    127.0.0.1:6379> get apple
    "100"
    127.0.0.1:6379> del apple …
    read more
  2. Redux

    Redux 쓰는 이유

    • 모든 컴포넌트가 props 없이 state를 직접 꺼낼 수 있음
    • useSelector를 사용
    • state 관리가 용이
    • state 수정방법을 모두 정의해 놓음 (reducer라고 부름)
    • 컴 …
    read more
  3. 스벨트(Svelte) 란

    개요

    Svelte는 라이브러리나 프레임워크 보다는 컴파일러에 가깝다.

    일반적으로 jQuery나 React로 프론트앤드를 개발하면 사용자가 해당 웹에 …

    read more
  4. SWC 란

    Speedy Web Compiler


    Rust-based platform for the Web

    SWC is an extensible Rust-based platform for the next generation of fast developer tools. It's used by tools like Next.js, Parcel, and Deno, as well as companies like Vercel, ByteDance, Tencent, Shopify, and more.

    SWC can be used for both compilation …

    read more

links

social