Create-React-App 없이 React 프로젝트 만들기
src
폴더를 만들고 index.html
라는 파일을 만듭니다. html:5
입력<body></body>
에서 다음을 생성합니다.<div id="root"></div>
body
:<script src="./App.js"></script>
style.css
폴더 안에 src
파일을 만들고 HTML 파일의 헤드에 CSS를 추가합니다.<link rel="stylesheet" href="style.css">
압형
NPM
npm init -y
(node와 npm이 설치되어 있는지 확인: node -v
& npm -v
). package.json
파일을 생성합니다. 더 예쁘다
npm i -D prettier
format
에서 package.json
스크립트 생성: "format": "prettier \"src/**/*.{js,html}\" --write"
Prettier
. Editor: Format On Save
(VSCode에서) 및 Prettier: Require Config
를 선택하십시오. .prettierrc
파일을 만듭니다.{}
이제 Prettier는 파일이 저장될 때마다 실행됩니다.
에스린트
npm i -D eslint eslint-config-prettier
npm install -D babel-eslint eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react // config eslint for react
npm i -D eslint-plugin-react-hooks // config eslint for hooks
.eslintrc.json
구성 파일 생성:{
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"prettier",
"prettier/react" // << you don't need it anymore since it has been merged into "prettier" https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21
],
"rules": {
"react/prop/types": 0, // unless you do prop types
"no-console": 1, // it will be a warning
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 1, // has to do with effects
},
"plugins": ["react", "import", "jsx-a11y", "react-hooks"],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module", // means we will be using import export
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"settings": {
"react": {
"version": "detect"
}
}
}
package.json
파일 내부에 새 스크립트를 만듭니다. "lint": "eslint \"src/**/*.{js,jsx}\" --quiet"
//자동은 오류만 보고합니다https://eslint.org/docs/user-guide/command-line-interface.이제
npm run lint
를 실행할 수 있습니다.지티노어
.gitignore
파일을 생성합니다. 원격 저장소의 파일/디렉토리를 커밋하지 않습니다. 과정에서 사용된 예:node_modules/
.DS_Store << if you are in a Mac
.cache/
coverage/
.vscode/
.env
소포
npm install -D parcel-bundler
. 그런 다음 package.json
에서 새 스크립트를 만듭니다."dev": "parcel src/index.html"
npm run dev
를 실행하면 코드를 묶습니다(무시할 수 있는 .cache
디렉터리가 생성됩니다. Bable은 Parcel에 내장되어 있습니다. Netlify:
build
와 같이 앱을 배포하려면 "build": "parcel build src/index.html"
명령도 필요합니다. 그런 다음 Netlify에서 빌드 명령을 npm run build
로 설정하고 게시 디렉터리를 dist
로 설정합니다.반응과 반응
npm i react react-dom
App.js
폴더 안에 src
파일을 만들고 다음을 입력합니다.import React from 'react';
import { render } from 'react-dom'; // or >> import REACTDOM from 'react-dom'
const App = () => {
return (
<div>Whatever</div>
)
};
render(
<App />,
document.getElementById('root')
);
Reference
이 문제에 관하여(Create-React-App 없이 React 프로젝트 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/petrussola/create-a-react-project-without-create-react-app-23p4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)