Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theiliad/gatsby-starter-rendering-modes
An example starter using new rendering modes in Gatsby 4
https://github.com/theiliad/gatsby-starter-rendering-modes
Last synced: 14 days ago
JSON representation
An example starter using new rendering modes in Gatsby 4
- Host: GitHub
- URL: https://github.com/theiliad/gatsby-starter-rendering-modes
- Owner: theiliad
- License: 0bsd
- Created: 2021-09-21T20:57:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-21T20:58:18.000Z (about 3 years ago)
- Last Synced: 2024-10-11T11:11:34.032Z (28 days ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Gatsby Starter Rendering ModesKick off your project with this example boilerplate, which includes examples of how to use the different rendering modes available for gatsby. Now, you can render ahead of time(SSG), just in time(SSR), or fashionably late(DSG)π.
_Have another more specific idea? You may want to check out our vibrant collection of [official and community-created starters](https://www.gatsbyjs.com/starters/)._
## π Quick start (Gatsby Cloud)
Deploy this starter with one click on [Gatsby Cloud](https://www.gatsbyjs.com/cloud/):
[](https://www.gatsbyjs.com/dashboard/deploynow?url=https://github.com/gatsbyjs/gatsby-starter-rendering-modes)
## π Quick start (CLI)
1. **Create a Gatsby site.**
Use the Gatsby CLI ([install instructions](https://www.gatsbyjs.com/docs/tutorial/part-0/#gatsby-cli)) to create a new site, specifying the rendering-modes starter.
```shell
# create a new Gatsby site using the hello-world starter
npx gatsby new gatsby-starter-rendering-modes https://github.com/gatsbyjs/gatsby-starter-rendering-modes
```2. **Start developing.**
Navigate into your new siteβs directory and start it up.
```shell
cd gatsby-starter-rendering-modes/
npm start
```3. **Open the source code and start editing!**
Your site is now running at `http://localhost:8000`!
_Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.com/tutorial/part-five/#introducing-graphiql)._
Open the `gatsby-starter-rendering-modes` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time!
## Important Pages
- `src/pages/ssr.js` uses the `getServerData` API to enable SSR mode
- `src/templates/dsg.js` uses the `createPages` API to enable DSG## Using Deferred Static Generation(DSG) and Server Side Rendering(SSR)
### DSG
Deferred static Generation gives you the power to build only a part of your page and leave the rest until run-time
to enable DSG, you simply add the `defer` property when creating pages in `gatsby-node` as shown below:
``` gatsby-node.js
const path = require('path')exports.createPages = ({
actions,
}) => {actions.createPage({
path: '/dsg', // expected relative path
component: path.resolve('src/templates/dsg.js'), // this path goes to where the defered page should be expected
defer: true,
})
}
```Add the link to an existing page in order to allow access to the page
```
DSG page
```### SSR
to enable SSR, export an asynchronous function `getServerData` within the file where you wish to be able to dynamically retrieve content.
```
export async function getServerData ({ params }) {
const data = await fetch(`https://dog.ceo/api/breeds/image/random`)
.then(res => res.json())return {
props: {
// data has the shape of "message", "status" where message is the image src
image: data.message
}
}
}
```access the data within the page using props:
```
export default function SSR (props) {
const { image } = props.serverData
// ...rest of code
}
```## π§ What's inside?
A quick look at the top-level files and directories you'll see in a Gatsby project.
.
βββββ src
β βββ pages
β βββ ssr.js
β βββ templates
β βββ dsg.js
βββ .gitignore
βββ gatsby-config.js
βββ gatsby-node.js
βββ LICENSE
βββ package-lock.json
βββ package.json
βββ README.md1. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for βsource codeβ.
1. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.
1. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins youβd like to include, etc. (Check out the [config docs](https://www.gatsbyjs.com/docs/reference/config-files/gatsby-config/) for more detail).
1. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.com/docs/reference/config-files/gatsby-node/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.
1. **`LICENSE`**: This Gatsby starter is licensed under the 0BSD license. This means that you can see this file as a placeholder and replace it with your own license.
1. **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You wonβt change this file directly).**
1. **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the projectβs name, author, etc). This manifest is how npm knows which packages to install for your project.
1. **`README.md`**: A text file containing useful reference information about your project.## π Learning Gatsby
Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.com/). Here are some places to start:
- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.com/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process.
- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.com/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar.
## π« Deploy
[Build, Deploy, and Host On The Only Cloud Built For Gatsby](https://www.gatsbyjs.com/products/cloud/)
Gatsby Cloud is an end-to-end cloud platform specifically built for the Gatsby framework that combines a modern developer experience with an optimized, global edge network.