몽고디비 공식사이트 : https://www.mongodb.com/ The most popular database for modern apps We're the creators of MongoDB, the most popular database for modern apps, and MongoDB Atlas, the global cloud database on AWS, Azure, and GCP. Easily organize, use, and enrich data — in real time, anywhere. www.mongodb.com 다운로드 : https://www.mongodb.com/download-center/community MongoDB Download Center Select the ser..
분류 전체보기
1. Koa : Koa는 웹 응용 프로그램 및 API를위한 작고 표현력이 뛰어나며 견고한 기반을 목표로하는 Express 팀의 새로운 웹 프레임 워크입니다. 비동기 함수를 활용하여 Koa는 콜백을 제거하고 오류 처리를 크게 향상시킬 수 있습니다. Koa는 코어 내에 미들웨어를 번들로 제공하지 않으며 서버를 빠르고 재미있게 작성할 수있는 우아한 일련의 메소드를 제공합니다. 웹사이트 : https://koajs.com/ Koa - next generation web framework for node.js Introduction Koa is a new web framework designed by the team behind Express, which aims to be a smaller, more expre..
2019/07/12 - [WEB/REACT] - 12. react-router로 SPA 12. react-router로 SPA - SPA : Single Page Application (싱글 페이지 애플리케이션) - 라우팅 관련 라이브러리인 react-router 를 사용예정 - react-router는 서드 파티 라이브러리, 비록 공식 라이브러리 아니지만 많이 사용하고 있음.. kururu.tistory.com 이전글 이어서 진행 webpack 서정 밖으로 꺼내기 yarn eject 서드 파티라이블러들을 vendors 로 따로 분리한다. 이렇게 하면 추후 프로젝트를 업데이트할때 업데이트하는 파일 크기를 최소화시킬수 있다. "webpack": "4.29.6" 기준설명 webpack.config.json ..
- SPA : Single Page Application (싱글 페이지 애플리케이션) - 라우팅 관련 라이브러리인 react-router 를 사용예정 - react-router는 서드 파티 라이브러리, 비록 공식 라이브러리 아니지만 많이 사용하고 있음 create-react-app react-router-tutorial yarn add react-router-dom yarn add cross-env yarn add query-string package.json 변경 - ../ 안쓰고 바로 src 폴더가 기본으로 만들기위한것 전) "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts..
웹 요청 1. Promise : ES6 문법에서 비동기 처리를 다루는 데 사용하는 객체 axios 라는 Promise 기반 HTTP 클라이언트 라이브러리 사용하여 웹 요청 2. redux-pender : Promise 기반 액션들을 관리하는 미들웨어가 포함되어 있는 라이브러리 yarn add axios redux redux-actions redux-logger redux-pender 스토어 생성 src/index.js import React from 'react'; import ReactDOM from 'react-dom'; import App from './App'; import { Provider } from 'react-redux'; import store from './store'; ReactDO..