Skip to main content

Command Palette

Search for a command to run...

next.js

Published
1 min readView as Markdown
  • react introduced by facebook
  • react framework - next.js

main benefits

  • simplifies development process
featuresnext.jsreact.js
renderingchoice of server/client side. on the server before sending it to client’s device. immediate display to user. solves issue of SEOclient side rendering. rendering on the browser
routingeach folder in ‘app’ directory is the routing pathcreating different page routes in react (install react-router-dom)
creating full stack applicationjust by creating route.js file - corresponds to route API endpoint
automatic code splittingbreaking code into smaller chunks to be loaded as neededmanual code splitting