React+REST API 게시판 구현/BE - TypeORM

    IDEA에서 DataGrip 연결하기 + entity 설계

    IDEA에서 DataGrip 연결하기 + entity 설계

    참고 https://eastflag.co.kr/fullstack/rest-with-nodejs/node-rest_entity/ angular, react, vue 등의 최신프런트엔드로 풀스택 개발 백엔드는 spring boot, Node로 프런트엔드는 react, angular, vue 의 최신프런트엔드를 사용하여 풀스택사이트 개발! eastflag.co.kr IDEA + DataGrip https://duckgugong.tistory.com/221 DataGrip 사용법 + Docker Docker에 Local Maria DB 구동 https://duckgugong.tistory.com/220 개발환경 백엔드 개발툴 - IntelliJ http://www.jetbrains.comwww.jetbrains..

    typeORM 설정

    typeORM 설정

    참고 https://eastflag.co.kr/fullstack/rest-with-nodejs/node-rest_typeorm/ angular, react, vue 등의 최신프런트엔드로 풀스택 개발 백엔드는 spring boot, Node로 프런트엔드는 react, angular, vue 의 최신프런트엔드를 사용하여 풀스택사이트 개발! eastflag.co.kr ORM? ORM이란 Object Relation Mapping의 약자로서 객체를 데이터베이스로 매핑해주는 것을 말한다. 객체 클래스 데이터베이스 테이블 객체 속성 데이터베이스 컬럼 MyBatis ORM? MyBatis ORM은 자바에서 사용되는 ORM이며 비즈니스 로직을 쿼리에 의존한다. 비즈니스 로직이란 생성, 수정, 삭제, 읽기를 말하며 객체..

    GET & POST + JSON 주고 받기

    GET & POST + JSON 주고 받기

    참고 https://eastflag.co.kr/fullstack/rest-with-nodejs/node-rest_get-post/ angular, react, vue 등의 최신프런트엔드로 풀스택 개발 백엔드는 spring boot, Node로 프런트엔드는 react, angular, vue 의 최신프런트엔드를 사용하여 풀스택사이트 개발! eastflag.co.kr HTTP method https://duckgugong.tistory.com/156 HTTP HTTP (Hypertext Transfer Protocol) HTTP는 서버와 클라이언트가 인터넷상에서 데이터를 주고받기 위한 프로토콜(Protocol)이다 HTTP는 HTML 문서와 같은 리소스들을 가져올 수 있도록 해주는 프로토콜이다. duckgu..

    NodeJS 프로젝트 만들기

    NodeJS 프로젝트 만들기

    참고 https://eastflag.co.kr/fullstack/rest-with-nodejs/node-rest_setup/ angular, react, vue 등의 최신프런트엔드로 풀스택 개발 백엔드는 spring boot, Node로 프런트엔드는 react, angular, vue 의 최신프런트엔드를 사용하여 풀스택사이트 개발! eastflag.co.kr 1. express 설정 IDEA를 열고 원하는 NodeJS 프로젝트를 설정할 디렉토리를 연 후, IDEA 하단의 Terminal 메뉴를 열고 아래 명령어npm 저장소를 만들자. pakage.json 파일이 생성될 것이다. npm init -y 그 다음, node로 REST 서버를 구동하기 위한 필수 라이브러리 express 모듈을 설치하고 타입스크..