/react-universal-blog

A universal blog app built using React, Express and Cosmic JS

Primary LanguageJavaScript

#React Universal Blog #####View a demo here #####Go to Cosmic JS to set up a bucket for your blog content

#####About The React Universal Blog is a portfolio blog app that renders html on the server to make all pages visible to search engines. Then after initial load from the server, is converted to a single page application to allow for fast navigation between pages.

#####Notes I tried to keep the organization as simple as possible. There are no client, server or shared component folders. All components are shared and the only difference between client and server are the entry points (app-client.js, app-server.js and app-deploy.js).

It uses the following:

  1. React for UI views
  2. Express for server side rendering
  3. React Router for routing
  4. Flux for data flow
  5. Cosmic JS for content management #####Install
git clone https://github.com/tonyspiro/react-universal-blog
cd react-universal-blog
npm install

#####Run webpack dev

npm run dev

Go to http://localhost:8080/webpack-dev-server #####Run production

npm run prod

Go to http://localhost:3000 #####Configure your Cosmic JS bucket After setting up your bucket on Cosmic JS, edit the config.js file and edit the slug to point to the slug of your bucket:

// config.js
export default {
  bucket: {
    slug: 'react-universal-blog',
    read_key: '',
    write_key: ''
  }
}