Home
This is a POC showing off what NextJS can do. This is not all features but some of them
Whats in this POC?
Here are some of the things that are in this POC will cover and show you through out the pages
- Static rendering: React server components that rendered at build time.
- Dynamic rendering: React server components that rendered at request time. Note: you can have dynamic routes with cached data
- Client components: Allows you to write interactive UI's that is prerendered on the server and the JS is executed on the browser. Note: Examples of this is in another branch, so you will need to switch to that to see this
- Server actions: Allows you to write server side code that is executed on the server instead of the client.
Good Sources
Here are some helpful places to get help in understanding NextJS and its coolness