1npm install -g create-react-app
2create-react-app my-app
3cd my-app
4git init
5heroku create -b https://github.com/mars/create-react-app-buildpack.git
6git add .
7git commit -m "react-create-app on Heroku"
8git push heroku master
9heroku open
10
1const path = require('path');const express = require('express');const app = express();const publicPath = path.join(__dirname, '..', 'public');const port = process.env.PORT || 3000;app.use(express.static(publicPath));app.get('*', (req, res) => { res.sendFile(path.join(publicPath, 'index.html'));});app.listen(port, () => { console.log('Server is up!');});