Skip to content

Instantly share code, notes, and snippets.

View YounglanHong's full-sized avatar
🙏
Focused

YounglanHong

🙏
Focused
View GitHub Profile
@koo6357
koo6357 / react_env.md
Last active January 5, 2021 04:26
REACT ENV 환경설정

REACT ENV 환경설정

react에서 지원하는 환경변수를 사용하여 app을 실행 또는 빌드하는 시점에 분기를 태우고, 그에따라 적용할수 있는 config파일을 하나 생성하겠다. react 환경변수는 REACT_APP_ 으로 시작해야 react내부에서 process.env로 참조할수 있다는 점을 주의하자.

// ex) package.json
{
  "scripts": {
      "start": "react-scripts start",
@serithemage
serithemage / aws-study-resource.md
Last active July 10, 2024 09:59
AWS 학습 자료집

AWS 학습 링크집 시리즈

@LeoHeo
LeoHeo / var-let-const.md
Last active July 19, 2024 11:52
javascript var, let, const 차이점

var, let, const 차이점은?

  • varfunction-scoped이고, let, constblock-scoped입니다.

  • function-scopedblock-scoped가 무슨말이냐?

var(function-scoped)

jsfiddle 참고주소