React EXpress Template, REX-T for node.
REX-T
is easy tool for create application using React (for front-end) and Express (for back-end)
You don't need to install or configure tools like Webpack or Babel.
Just use our default settings, it is effective.
Create your React + Express project with just one line.
React
: ^16.9.0Express
: ^4.17.1Babel
: ^7.5.5Webpack
: ^4.39.3
npm install -g @outstandingboy/rext
rext [your-app-name]
...
Done!
http://localhost:3000/ to see your React app.
http://localhost:8080/ to see your Express app.
You can change port at webpack.config.js
file. (if you want)
[your-app-name]
├── README.md
├── package.json
├── .babelrc
├── .nodemon.json
├── .webpack.config.js
├── public
│ └── index.html
└── src
└── client // React front end
│ ├── App.js
│ ├── index.js
│ └── assets
│ └── css
│ │ └── app.css
│ └── imgs
│ ├── express.png
│ ├── outstandingboy.png
│ ├── react.png
│ ├── rext.png
│ └── webpack.png
└── server // Express back end
├── api.js
└── index.js
iT`S KReiGy!!!!!!!!!