React

  • Touch and Swipe
    React

    4 만들면서 배우는 리액트 (진유림) - 1- 고양이 짦방앱 만들기 : 리액트 앱 바닥부터 만들기, 컴포넌트

      초급자를 위해 준비한[웹 개발, 프론트엔드] 강의입니다.리액트를 가장 쉽고 빠르게 배울 수 있는 리액트 입문 강의입니다. 토이 프로젝트를 …

  • Touch and Swipe
    React

    4 만들면서 배우는 리액트 (진유림) - 2- 고양이 짦방앱 만들기 : 리액트 앱

      초급자를 위해 준비한[웹 개발, 프론트엔드] 강의입니다.리액트를 가장 쉽고 빠르게 배울 수 있는 리액트 입문 강의입니다. 토이 프로젝트를 …

  • Touch and Swipe
    React

    4 React github 를 서버로 사용, github pages 이용방법

       1. react-router-dom 라이브러리가 설치 되어 있지 않다면 설치 한다. npm install react-router-dom  설치하는 이유는 깃허브 서버 주소를 …

  • Touch and Swipe
    React

    4 React - 만들고 비교하며 학습하는 리액트 - 1- 준비편, 순수JS , 2-리액트 소개편

     초급자를 위해 준비한[웹 개발, 프론트엔드] 강의입니다.리액트는 실무에서 가장 많이 찾는 인기있는 프론트엔드 기술입니다. 리액트 기술을 이용…

  • Touch and Swipe
    React

    4 react 기본문법

     vscode  확장 패키지 추가1. - Auto Import - ES6, TS, JSX, TSX2. - Reactjs code snippets3. - ESLint4. - Prettier - Code formatter  App.css.hello{ color: red; } .box-sty…

  • Touch and Swipe
    React

    4 react redux 적용

     1.   redux 설치&  yarn add redux react-redux   2. createStore  deprecate 로 인하여   React Redux Toolkit  설치$  yarn…

  • Touch and Swipe
    React

    4 react 목록 불러오기

      home.jsimport React, { useEffect, useState } from 'react'; import { Container } from "react-bootstrap"; import BookItem from './../../components/BookItem'; c…

  • Touch and Swipe
    React

    4 react 글쓰기

     saveForm.jsimport { useState } from 'react'; import { Container, Form, Button } from "react-bootstrap"; import { useNavigate } from 'react-router-dom'; const SaveF…

  • Touch and Swipe
    React

    4 react 상세보기

     Detail.js import React, { useEffect, useState } from 'react'; import { useParams } from 'react-router-dom'; import { Container } from "react-bootstrap"; const…

  • Touch and Swipe
    React

    4 react 수정삭제하기

     Detail.jsimport React, { useEffect, useState } from 'react'; import { useParams, useNavigate } from 'react-router-dom'; import { Button, Container } from "react-bootstrap&…

  • Touch and Swipe
    React

    ★리액트 next.js ckeditor 5 적용하기

      참고: https://ccomccomhan.tistory.com/284 다음 링크에서 원하는 설정을 통해 ckeditor 를 설정한다.https://ckeditor.com/ckeditor-5/builder/ CKEditor 5는 …

  • Touch and Swipe
    React

    ★리액트 넥스트 app router 방식에서 메타 데이터에서 중복 호출 방지 처

    넥스트를 app router 방식으로 개발하다보면 메타태그에서 같은 데이터를 중복으로 호출하는 경우가 발생한다.https://stackoverflow.com/questions/77478097/avoid…

  • Touch and Swipe
    React

    2.Next.Js 부동산 임대 웹사이트 만들기 - 섹션2. 프로젝트 시작

     섹션2. 프로젝트 시작  6. 프로젝트 시작 및 디렉토리 구조 Next.js 공식 문서:Next.js 공식 웹사이트에서 문서를 찾아볼 수 있습니다.코스…

  • Touch and Swipe
    React

    1.Next.js 부동산 임대 웹사이트 만들기

      https://github.com/bradtraversy/property-pulse 1. 프로젝트 소개이 프로젝트는Next.js의 React 서버 컴포넌트, 파일 기반 라우팅, MongoDB 데이터베이스와 …

  • Touch and Swipe
    React

    ★리액트 NextJS 페이지앱 방식 nextAuth 인증 추가하기 next-auth 4

      NextAuth.jshttps://next-auth.js.org/getting-started/example   몽고 DB  설정 1) next.config.jsconst { PHASE_DEVELOPMENT_SERVER } = require('next/constants&#…

  • Touch and Swipe
    React

    ★리액트 넥스트 NextJS 앱 배포하기 ,

      1.환경변수와 Next.js 구성 공식문서 :https://nextjs.org/docs/app/api-reference/next-config-js 환경변수는 개발 및 프로덕션 단계에서 다양한 코드 값…

  • Touch and Swipe
    React

    리액트 넥스트 페이지 라우터 - _document.js

       import Document, { Html, Head, Main, NextScript } from 'next/document';  next/document에서 Document, Html, Head, Main, NextScript 컴포넌트를 가져옵니다.Docume…

  • Touch and Swipe
    React

    리액트 넥스트 next.js _document.js

      _document.js import Document, { Html, Head, Main, NextScript } from "next/document"; class MyDocument extends Document { render() { return ( <Html lang=…

  • Touch and Swipe
    React

    next.js page Router 페이지 라우터 - getServerSideProps , getStaticPaths, getServerSideProps , useSWR, 클라이언트 사이드 렌더링(CSR) 과 서버 사이드 렌더링(SSR) 둘다 사용

       소스 :https://github.dev/mschwarzmueller/nextjs-course-code/tree/04-data-fetching https://github.dev/mschwarzmueller/nextjs-course-code/tree/05-prj-data-fetchinghttps://nextjs…

  • Touch and Swipe
    React

    리액트 NextJS 14 Lucia Auth 루시를 통한 인증 개발 , searchParams

       소스 :https://github.dev/braverokmc79/next-ex09-userAuthentication1.Lucia 설치 https://lucia-auth.com/ 인증 구현에 대해 배운 내용을 요약하면 다음과 …