Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fchristenson/pre-rendering
https://github.com/fchristenson/pre-rendering
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fchristenson/pre-rendering
- Owner: fChristenson
- Created: 2020-04-10T05:28:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T10:45:44.000Z (about 2 years ago)
- Last Synced: 2023-08-20T07:22:03.168Z (over 1 year ago)
- Language: JavaScript
- Size: 1.47 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Pre-rendering
## What we will cover
- What is pre-rendering?
- How does it work?
- When do we want to do it?## Notes
Pre-rendering is when you construct a website from dynamic information before runtime.
After the pre-rendering is done you serve the generated files as a static website.In traditional html templating you perform the same process but on every request.
This is useful if you have dynamic content with the same template and too many pages to pre-render them all.