전체 글69 [React] study day 1 1. 스터디 220718 💑 좋았던 것(Liked) : tailwindcss 첫 시작 방법을 알게 되었다! vite로 프로잭트를 시작했다! 🌟 배운 것(Learned) : config파일이 문제가 생기면 발생하는 error를 알게 되었다. 💦 부족했던 것(Lacked) : react 기본 문법이 좀 약한 것 같다. 빨리 강의를 들어야겠다. ts 적용하려니까 정말 혼동이다.... 🌻 바라는 것(Longed for) : 팀플을 빨리 완성해서 react스터디에 좀더 집중하고 싶다. 2. vite로 프로젝트 시작하기 https://tailwindcss.com/docs/installation/using-postcss Installation: Using PostCSS - Tailwind CSS Documentati.. 2022. 7. 18. [React] 몰아듣기... 리액트를 쓰는 이유 : https://github.com/academind/react-complete-guide-code/tree/01-getting-started/code/react-vs-vanilla-js-example 리액트의 대안 : https://academind.com/tutorials/angular-vs-react-vs-vue-my-thoughts ----------------- nodejs 설치 : https://nodejs.org/ko/ 강의에서는 최신 버전을 설치하라고 했지만 나는 LTS파이다... ㅋㅋㅋ 이제 리액트 프로잭트 만들 수 있다!! https://github.com/facebook/create-react-app GitHub - facebook/create-react-app:.. 2022. 7. 16. [Vue & Vite] Vite(3.0.0)에서 경로 별칭 설정하기 원래 사용하던 vite의 버전이 vite": "^2.9.9" 이었다. 그때 경로 별칭을 다음과 같이 설정했다. 1. 2.9.9 : vite.config.js 파일 import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue()], resolve: { alias: [ { find: '~', replacement: `${__dirname}/src` } ] } }) 2. 3.0.0 : vite.config.js 파일 하지만 이번에 vite가 업데이트가 되면서 "vite": "^3.0.0" 이 되었다!! 제일 앞.. 2022. 7. 15. [TIL] nodejs ( md 파일을 html파일로 바꿔보자!!) nodejs로 간단한 코딩을 하는 것을 배웠다.! nodejs 환경에서 md 파일을 html파일로 변환해서 브라우져에 출력하는 코드를 배웠다!! 코드는 깃헙에서 볼 수 있다!! npm init -y npm i marked npm i jsdom 독타입이 없으면 브라우저에서 html파일로 해석될 보장이 없음,.!! --- // YAML --- # ABC Hello World! ### fruits - Apple - Banana - Cherry npm i js-yaml : yaml 포멧을 읽어서 js형태로 바꿀수 있음! 검색어(yaml format to js) npm i nodemon "scripts": { "start": "nodemon index.js" }, 개발 서버? 같은거임!! npm start 하면 .. 2022. 7. 15. 이전 1 ··· 4 5 6 7 8 9 10 ··· 18 다음