Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/justinkunz/create-react-express
- Owner: justinkunz
- Created: 2020-05-13T02:27:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T02:56:05.000Z (over 4 years ago)
- Last Synced: 2024-12-07T17:36:57.641Z (about 1 month ago)
- Topics: boilerplate, express, mern, mern-stack, react, reactjs
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/create-react-express
- Size: 77.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-projectTo start your app run:
cd example-project
npm start
```