Skip to content

Twenty Sixteen theme as an isomorphic React.js application using NodeifyWP.

Notifications You must be signed in to change notification settings

leonidasmi/twentysixteenreact

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twenty Sixteen React

This is the Twenty Sixteen theme rebuilt using NodeifyWP

Background

Isomorphic web applications (running the same code on the server and client) are all the rage because they provide the flexibility, extensibility, and consistency needed to build large and powerful "app-like" experiences on the web. JavaScript and Node.js are used to create isomorphic applications since JS runs natively in the web browser.

As 8 million different isomorphic web frameworks and strategies have popped up around JavaScript, we, in the WordPress community, have been stuck in PHP world where the same isomorphism isn't really possible. We believe WordPress is an incredibly relevant and useful fully-fledged CMS with the best overall editorial experience available for publishing content. Therefore, we don't want to abandon WordPress for the newest "hot" web technology.

To create JavaScript powered "app-like" experiences in WordPress, we currently have a few options:

  1. Create a PHP theme with a client side layer that refreshes the DOM using something like Underscore templates and the REST API. This strategy allows us to achieve the desired effect but is a bit forced in that we have to create templates in PHP and separate ones for JavaScript. This structure is tough to maintain from a development perspective.

  2. With the release of the REST API, we can discard WordPress's front-end completely. We can use Node.js and something like Express to serve our front-end communicating with WordPress using the REST API. This is great but presents some serious difficulties. For one, we have to make an external request to get simple things like theme options, menus, and sidebars. Customizer functionality is essentially useless. Previews and comments are very hard to implement. The admin bar is gone. Front-end authentication becomes an extremely hard problem to solve. Plugins can't interact with the front-end.

  3. Some hybrid of the first two options.

The options currently available lead us to build NodeifyWP.

NodeifyWP uses PHP to execute Node.js code on the server. This is made possible by V8Js which is a PHP extension for Google's V8 engine. NodeifyWP exposes WordPress hooks, nav menus, sidebars, posts, and more within server-side Javascript. A simple API for registering PHP "tags" within JavaScript is made available. It also includes a REST API for retrieving route information, updated tags, sidebars, menus, etc. as the state of your application changes. With NodeifyWP, we can serve a true isomorphic application from within PHP. We get all the benefits of WordPress and all the benefits of powerful isomorphic Node.js technologies. No separate Node.js/Express server is necessary.

Twenty Sixteen React is a standard WordPress theme rebuilt using the following technologies:

The theme uses all of the popular new Node.js technologies giving you the holy grail of "app-like" experiences with your favorite CMS.

Install

  1. First, install V8Js and PHP 5.6+. This repository contains the Twenty Sixteen React theme within the /wordpress/wp-content/themes directory. The rest of the repository is for environment set up. If you just want the theme, you can pull it out. If you want to run the theme within the Docker Compose based development environment, run docker-compose up within the project root.
  2. Install Twenty Sixteen React just as you would a standard WordPress theme. There is no difference!
  3. From within the theme folder, run composer install to install theme PHP dependencies.
  4. From within the theme folder, run npm install then webpack to setup and package the JS application. You can install webpack globally like so npm install -g webpack.
  5. If you are running WordPress version less than 4.7, you will need to install the JSON REST API.

Testing and Development

The project contains a fully-fledged Docker based environment. In order to run the environment you will need Docker and Docker Compose. To setup the following, run the following command in the project root:

docker-compose up

This command will build the environment and spin up a Docker container with MySQl and one with PHP7, V8, and v8js. After the environment finishes initializing, navigate to localhost:8080 in your browser. Don't forget to run composer install, npm install, and webpack within the theme.

Contributing

We are excited to see how the community receives the project. We'd love to receive links to open-sourced themes using NodeifyWP.

License

This is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

About

Twenty Sixteen theme as an isomorphic React.js application using NodeifyWP.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 54.1%
  • PHP 28.2%
  • JavaScript 17.6%
  • Shell 0.1%