1. node.js express 백엔드 세팅 메모

    프로젝트 생성

    • 프로젝트 폴더 생성후 npm init으로 package.json파일 생성
      docker-spring-boot git:(main) mkdir cube-node-js
    
      docker-spring-boot git:(main)  cd cube-node-js
    
      cube-node-js git:(main) npm init
    
    This utility will walk …
    read more
  2. nvm 메모

    설치된 nvm node 확인

    nvm list
    

    node 버전 변경

    nvm use <16>
    

    default node 버전 지정

    nvm alias default <16>
    
    read more
  3. oAuth 란

    출처

    • https://blog.naver.com/mds_datasecurity/222182943542

    개요

    OAuth 2.0(Open Authorization 2.0, OAuth2)은 인증을 위한 개방형 표준 프로토콜

    이 프로토콜에서는 Third-Party 프로그램에게 리소 …

    read more
  4. PHP 기본 문법 정리

    변수

    타입

    • php에서는 변수를 선언할 때 타입을 따로 명시할 필요가 없다.
    • 변수의 타입은 해당 변수에 대입하는 값에 따라 자동으로 결정 …
    read more
  5. Redux

    Redux 쓰는 이유

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

    개요

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

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

    read more
  7. 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
  8. Webpack 이란

    • 웹팩은 오픈 소스 자바스크립트 모듈 번들러이다.
    • 주로 자바스크립트를 위한 모듈 번들러이지만 호환 플러그인을 포함하는 …
    read more

links

social