temp
-
리액트에서 import 경로인 node_path 기본을 src 경로로 설정하는 법temp/React 2019. 6. 29. 13:51
1. 프로젝트 제일 상단에 .env 파일을 생성한뒤 아래와 같이 입력해준다. NODE_PATH=src 2. crossenv를 설치후 yarn add cross-env package.json 파일 아래의 scripts를 아래와 같이 수정한다. "scripts": { "start": "cross-env NODE_PATH=src react-scripts start", "build": "cross-env NODE_PATH=src react-scripts build", }
-
create-react-app 명령어 입력시 에러 해결법 : 'create-react-app'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다.temp/오류 및 해결방법 2019. 6. 29. 13:15
create-react-app 명령어를 통해 프로젝트를 생성할 때 아래와 같은 에러가 날때가 있다. create-react-app '프로젝트명' 'create-react-app'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. 이럴때에는 yarn 또는 npm 을 통해 글로벌한 설정으로 설치해주면 된다. $ yarn global add create-react-app # yarn 으로 인스톨 해도 안될 시에는 npm 을 이용하여 설치한다. $ npm install -g create-react-app
-
yarn init 에러 해결법 : "Can't answer a question unless a user TTY"temp/오류 및 해결방법 2019. 6. 22. 13:25
yarn init 명령어를 실행할때 아래와 같은 에러가 뜰때가 있다. error An unexpected error occurred: "Can't answer a question unless a user TTY". info If you think this is a bug, please open a bug report with the information provided in "C:\\Users\\yarn-error.log". info Visit https://yarnpkg.com/en/docs/cli/init for documentation about this command. 위와 같은 문제는 보통 git bash 와 같은 툴을 사용하지말고 내장된 CMD 창을 통해 명령을 실행시키면 잘된다.
-
javaScript 현재 페이지 url 주소 가져오는법temp/정리 2019. 5. 28. 08:55
현재 페이지의 url 주소를 가져와 로직을 처리하고 싶을 때가있다. javascript 를 통해 window location 을 가져올수 있는 코드는 다음과 같다. ex) http://localhost:3000/gogo/30 이라는 주소가 있다면 // 현재 페이지의 href 조회(전체 주소) window.location.href 결과 : http://localhost:3000/gogo/30 // 사용하는 웹 프로토콜 조회 window.location.protocol 결과: http: // 웹 호스트 도메인 네임 조회 window.location.hostname 결과 : localhost // 현재 페이지 포트 조회 window.location.port 결과 : 3000 // 현재 페이지 경로 및 파일 이..