Server-side scripting: Difference between revisions

Content deleted Content added
m Group related sections under a parent section for better structure
Line 31:
 
=== Server-side generation ===
Another similar to SSR technique of generating content for a website is using Serverserver-side generation. This technique useuses applicationapplications that create static html pages and then those files are send to the client. The advantage to this is that it's faster and more performant. A new file doesn't have to be generated on every request; the server simply hands over a file generated in the past. File generation can happen on a completely different computer, for example using [[continuous delivery]]. Example of SSG tools are [[Jekyll (software)|Jekyll]], [[Gatsby (software)|Gatsby]] or [[Eleventy (software)|Eleventy]]. Those sites are often hosted on [[Netlify]] or [[GitHub]] pages. GitHub also supports Jekyll projects where it automatically build the site when changes are added to [[git]].
 
== Languages ==