A create-react-app plugin for a Jekyll style Markdown blog. Dependencies are injected (react, [email protected], [email protected]) and thus must be installed on their own.
(create a clean new create-react-app
so you can understand how it works before importing it into your own project)
npm install -g [email protected]
create-react-app react-blog
cd react-blog
npm install --save --save-exact [email protected]
npm install --save [email protected] [email protected] [email protected] [email protected]
mkdir src/_posts
touch src/_posts/2016-10-20-hello-world.md
npm start
-
import React from 'react'; import { IndexRoute, Link, Router, Route, browserHistory } from 'react-router'; import Helmet from 'react-helmet'; import createReactAppBlog from './create-react-app-blog'; <Router history={browserHistory}> <Route path="/blog">{createReactAppBlog(React, IndexRoute, Link, Route, Helmet)}</Route> </Router>