Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: introducing core concepts #1456

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/content/docs/2/guide/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
title: Core Concepts
---

import Stub from '@components/Stub.astro';
As you embark on your journey with Tauri, having a working knowledge of the concepts covered on this page will help you to get the most out of the framework.

<Stub>
## Single Page Applications (SPAs)

SPAs, SSG, etc.
Single Page Applications, often referred to as SPAs, load a single HTML page and dynamically update its content using Javascript as users interact with it. This is commonly achieved using frameworks like React, Vue.js, or Angular, which handle rendering and navigation. SPAs provide a smooth user experience by reducing page reloads and enhancing responsiveness.

</Stub>
## Static Site Generators (SSGs)

Static Site Generators are tools that enable developers to create websites with pre-built HTML, CSS, and JavaScript files. SSGs generate static files during the build process, which can then be hosted on a web server. Popular SSGs include Eleventy, Jekyll, and Hugo, which streamline the process of creating and maintaining static websites.