반응형

기능 

  • 간단한 클라이언트 사이드 라우팅
  • Hot Module Replacement를 지원하는 Webpack 기반 작업환경
  • Express 나 그 어떤 Node.js 서버와 함께 사용 가능
  • Babel / Webpack 환경설정 커스터마이징 가능 

https://nextjs.org/

 

Next.js by Vercel - The React Framework

Production grade React applications that scale. The world’s leading companies use Next.js by Vercel to build static and dynamic websites and web applications.

nextjs.org

https://velopert.com/3293

 

[Next.js 2.0] 간단한 React 전용 서버사이드 프레임워크, 기초부터 본격적으로 파보기 | VELOPERT.LOG

Next.js, 작년부터 존재함을 인지해왔고, 뭔가 멋지다는것도 알고있었지만 그 동안 딱히 필요성을 못 느껴서 오랫동안, 아주 오랫동안 미뤄왔습니다. (이 포스트를 보시는 여러분들중 일부도 그러

velopert.com

Why Next.js

The world’s leading companies use and love Next.js

Zero Config

Automatic compilation and bundling. Optimized for production from the start.

Documentation →

Hybrid: SSG and SSR

Pre-render pages at build time (SSG) or request time (SSR) in a single project.

Documentation →

Incremental Static Generation

Add and update statically pre-rendered pages incrementally after build time.

Documentation →

TypeScript Support

Automatic TypeScript configuration and compilation.

Documentation →

Fast Refresh

Fast, reliable live-editing experience, as proven at Facebook scale.

Documentation →

File-system Routing

Every component in the pages directory becomes a route.

Documentation →

API Routes

Optionally create API endpoints to provide backend functionality.

Documentation →

Built-in CSS Support

Create component-level styles with CSS modules. Built-in Sass support.

Documentation →

Code-splitting and Bundling

Optimized bundle splitting algorithm created by the Google Chrome team.

Documentation →

 

 

 

반응형

'프로그래밍 > Script' 카테고리의 다른 글

[CSS] CSS Selector  (0) 2020.09.08
TypeScript-Handbook 한글 문서  (0) 2020.08.28
FileSaver.js - An HTML5 saveAs() FileSaver implementation.  (0) 2020.08.21
Using Google Charts  (0) 2020.08.19
Bootstrap 4.5  (0) 2020.08.18
반응형
리액트를 공부하기 전에 미리 알아두면 좋은 자바스크립트 기초 지식을 정리한 글입니다. 클래스, 상속, 화살표 함수 등 ES6에 등장한 자바스크립트 새로운 기능을 소개하고 있습니다.

#Developer #개발자 #기발자 #JavaScript #자바스크립트 #ES6 #React #리액트

https://morioh.com/p/fb839c7da909/javascript-basics-before-you-learn-react?fbclid=IwAR0gtwoGWcK52_RpF3auOtQnNEbelMLVgqw0uNggKn6KQHz6o_x8V6iKiBs



...
반응형
반응형

React와 Vue의 특징을 정리한 블로그 글입니다. 각 프레임워크가 갖고 있는 특징 및 장단점을 객관적인 자료를 사용하여 자세히 설명하고 있습니다. 주요 특징은 다음과 같습니다.


- Templates 형식으로 앱 제작을 원한다면 Vue

- 간단한 것과 “일단 동작” 되는 걸 좋아하면 Vue

- 빠르고 경량의 앱을 제작하고 싶다면 Vue

- 큰 규모의 앱을 만드신다면 React

- 더 큰 개발 생태계를 원한다면 React


https://joshua1988.github.io/web_dev/vue-or-react/



Vue 의 장점은

  • Template 과 Render Function 을 모두 사용할 수 있는 옵션
  • 간편한 Syntax 와 프로젝트 설정
  • 빠른 렌더링과 더 작은 용량

React 의 장점은

  • 큰 규모에서 더 빛을 발하고, 테스팅이 수월
  • Web 과 Native 앱 개발에 모두 사용 가능
  • 더 큰 개발자 생태계에서 오는 많은 레퍼런스와 도구들

하지만, React 와 Vue 이 다른 점보다는 유사점을 더 많이 갖고 있는 기상천외한 UI 라이브러리입니다. 이 두 라이브러리의 공통된 특장점은

  • Virtual DOM 으로 빠른 렌더링
  • 경량 라이브러리
  • Reactive Component
  • Server Side Rendering
  • 라우터, 번들러, state management 와 결합이 쉬움
  • 훌륭한 개발자 커뮤니티와 지원



...

반응형

+ Recent posts