nextjs - service side react framework


관련 자료

 

 

Next.js - The React Framework

Production grade React applications that scale. The world’s leading companies use Next.js to build server-rendered applications, static websites, and more.

nextjs.org

 

 

Getting Started

Install it: npm install --save next react react-dom and add a script to your package.json like this: { "scripts": { "dev": "next", "build": "next build", "start": "next start" } } After that, the file-system is the main API. Every .js file becomes a route

nextjs.org

 

 

https://blueshw.github.io/2018/04/15/why-nextjs/

 

blueshw.github.io

 



 

 

Nextjs

 

NextJS는 서버사이드렌더링(SSR)과 code splitting 등을 지원하는 reactjs 전용 프레임워크다. 아래에는 크게 네가지로 NextJS의 특징을 간략하게 모아 보았다.

1. Server-Side Rendering Done Right

Take the pain out of creating Universal React apps with Next.js

 

2. File-System routing

 

3. Automatic code splitting

4. Static exporting

Static Sites, No Compromise

 

5. More ...

 

+ Recent posts