Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/justinkunz/create-react-express

Repo for the npm package create-react-express
https://github.com/justinkunz/create-react-express

boilerplate express mern mern-stack react reactjs

Last synced: 27 days ago
JSON representation

Repo for the npm package create-react-express

Awesome Lists containing this project

README

        

# Create React Express App

Shortcut for making react/express apps

Run the following:
`npx create-react-express `

Optionally you can supply a port number for the express server. By default, this port is set to 3001
_(Note: Port can not be 3000)_

#### Example

`npx create-react-express example-project 8080`

```
User@bizzybop01 % npx create-react-express example-project 8080
npx: installed 30 in 3.291s
βœ” Creating example-project folder
βœ” Installing Server Depenancies
βœ” Creating React App - Go grab a drink 🍺
βœ” Adding Proxy config on React package.json file to route traffic to port 8080
βœ” Adding Start script to server npm package
πŸš€Created React Express App in example-project

To start your app run:
cd example-project
npm start
```