Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imranhsayed/nextjs-headless-wordpress
🔥 Nextjs Headless WordPress
https://github.com/imranhsayed/nextjs-headless-wordpress
apollo-client authentication cypress docker e2e-tests graphql hacktoberfest hacktoberfest2020 headless-cms headless-wordpress headless-wordpress-framework jwt nextjs nextjs-headless-wordpress nextjs-starter preview reactjs seo wordpress yoast-seo
Last synced: 24 days ago
JSON representation
🔥 Nextjs Headless WordPress
- Host: GitHub
- URL: https://github.com/imranhsayed/nextjs-headless-wordpress
- Owner: imranhsayed
- License: gpl-3.0
- Created: 2020-09-12T06:26:39.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-14T14:54:39.000Z (over 1 year ago)
- Last Synced: 2024-09-30T05:23:24.660Z (about 1 month ago)
- Topics: apollo-client, authentication, cypress, docker, e2e-tests, graphql, hacktoberfest, hacktoberfest2020, headless-cms, headless-wordpress, headless-wordpress-framework, jwt, nextjs, nextjs-headless-wordpress, nextjs-starter, preview, reactjs, seo, wordpress, yoast-seo
- Language: JavaScript
- Homepage: https://codeytek.com/course/next-js-headless-wordpress-course/
- Size: 85.5 MB
- Stars: 635
- Watchers: 26
- Forks: 162
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
## 🎨 Next.js Headless WordPress
[![Project Status: Active.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
![Stars](https://img.shields.io/github/stars/imranhsayed/nextjs-headless-wordpress?label=%E2%AD%90%20Stars)
![Forks](https://img.shields.io/github/forks/imranhsayed/nextjs-headless-wordpress?color=%23ff69b4)
![Contributors](https://img.shields.io/github/contributors/imranhsayed/nextjs-headless-wordpress?color=blue)
![Follow](https://img.shields.io/github/followers/imranhsayed?label=Please%20follow%20%20to%20support%20my%20work%20%F0%9F%99%8F&style=social)- Headless WordPress, using Decoupled Architecture in Next.js
- Backend in WordPress using WPGraphQL
- Front end in React.## Features
1. Home Page, Blog Page, Post Page
2. Post Preview
3. Post Pagination.
4. Load More Posts.
5. SEO Component fetching data Yoast SEO with schema
6. Cypress for tests, Eslint for linting.
7. Apollo Client with GraphQL
8. Api endpoints.
9. Header and Footer in Next.js fetching from WordPress Menu items.
10. WordPress Widgets displayed on Next.js frontend.
11. Site title, tagline, copyright text, sourced from WordPress.
12. Next.js Image component, that has image optimization at request time.
13. Authentication with JWT and Http Only Cookie implementation.
14. Login feature for WP Post Preview in Next.js
15. Incremental Static (Re)generation and automatic creation of New Static post pages
without having to re-build next.js the application.
14. Gutenberg styles support## [Tutorial Course](https://codeytek.com/course/next-js-headless-wordpress-course/)
Code for the tutorial is in the [Tutorial Branch](https://github.com/imranhsayed/nextjs-headless-wordpress/tree/feature/youtube-tutorial)## [Live Demo Link](https://nextjs-headless-wordpress-demo.vercel.app/)
https://nextjs-headless-wordpress-demo.vercel.app/![](demo/demo.gif)
## Setup
First clone/fork the repo and cd into it.
```bash
git clone https://github.com/imranhsayed/nextjs-headless-wordpress.git
cd nextjs-headless-wordpress
```- Install Docker from [docs.docker.com/get-docker](https://docs.docker.com/get-docker/) ( this step may not be required if you are using your own WordPress setup.)
It's very simple to setup the project with just one command and this `./nxtwp configure`
**One command project setup**
The below command is going to set up the project in the interactive mode.
It creates an .env file for front-end next.js project and setsup up frontend and/or backend.
Run this from the root of the project.```bash
./nxtwp configure
```
It's going to ask you a few of questions.```bash
Q1. Do you already have a WordPress setup that you want to continue with? [y/n]:
```
*Answer*`y`: If you would like to use this project's WordPress Docker setup ( In which case make sure to install and active all plugins from [backend/plugins-collection])
`n`: If you want to use your own WordPress setup.```bash
Q2. ✍️ What is your WP backend URL? (defaults to http://localhost:8020):
```
Leave it blank if you would like to use this project's WordPress Docker setup,
else enter your own WordPress site URL.```bash
✍️ What is your frontend next js URL? (defaults to http://localhost:3000):
```
Leave this blank for development, as it will be the same as default for next.js```bash
✍️ What is your Disqus comments shortname? (leave blank if you are not using):
```Leave this blank if you are not going to use the Disqus comments, else enter your Disqus comments shortname.
This is going to automatically:
- Creates the `.env` file in the frontend directory.
- Setup WordPress backend with all the plugins via composer (if you chose y for the first question)
- Install npm packages for next.js frontend and start development server.**WordPress Backend** will be available on [http://localhost:8020](http://localhost:8020)
**Next.js Backend** will be available on port [http://localhost:3000](http://localhost:3000)
* Make sure to activate all plugins that it has installed via composer.
* Update block registry by going to WordPress Dashboard > GraphQL Gutenberg.
* Update the permalink by going to Settings > Permalinks > Post name > Save
* Copy the backend/wordpress/.htaccess file content into your WordPress .htaccess
* For more information checkout the project [Wiki](https://github.com/imranhsayed/nextjs-headless-wordpress/wiki/)That's it!
### During development
Useful commands:
To be run from the root of the project.```bash
./nxtwp configure # Sets up backend and frontend and creates an .env file
./nxtwp start-all # Creates and starts docker environment for WP and runs Next JS server
./nxtwp start-backend # Creates and starts docker environment
./nxtwp start-frontend # Installs all packages and Runs Next JS server
./nxtwp stop # Stops the WordPress docker containers
```## Debugging
1. If you get 404 on frontend for graphql request, check to see that the `.htaccess` file in wordpress directory has the rules
```shell script
# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
```2. If front-end is throwing some other error.
- Check if all the required WordPress plugins form `backend/plugins-collection` are active.
- Ensure you have updated the block registry from WordPress backend > GraphQL Gutenberg
- Ensure that `.env` file has correct env variables and their values in `frontend/.env`## References for Docker Images.
1. [phpMyAdmin](https://github.com/fuadajip/dockercompose-mysql-phpmyadmin/blob/master/docker-compose.yml)