rattrayalex / redux-blog-example

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redux Blog Example

Full-featured example of publishing platform built with React, Redux, React Router, Babel and Webpack.

Some features:

Running

npm install

Production

npm run build # build assets and server
npm start # start the server

Open http://localhost:3000/ in the browser.

Development

npm run dev # start development server with hot reloading

It will automatically open your default browser with project loaded.

Note: You will notice some latency between the moment it open the browser and really load the page. It's okay.

You can

while unauthorized

  • View list of published posts
  • View single post
  • Log in with hardcoded credentials
  • Be redirected from protected routes

while authorized

  • view /dashboard with unpublished posts
  • edit and unpublish any post
  • edit your firstname and lastname in /profile

How it works

All data stored in API implemented with jsonServer. There're pre-populated users and posts entities. This implementation is example-only and you can easily drop-in your own backend solution. We aim just to show the direction.

TODO

  • comments
  • pagination
  • tests

About

License:MIT License


Languages

Language:JavaScript 91.1%Language:CSS 8.1%Language:HTML 0.8%