1 Answer
- Newest
- Most votes
- Most comments
1
Hi Sri,
Elastic Beanstalk support deployment of node JS applications (https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_nodejs.html). Those are server-side components that may include a JavaScript framework such as React.
If you have a React app without NodeJs, then Elastic beanstalk may not be your best fit.
React alone, it is a client side app. Typically those need to be bundled (npm run build in your example above) and that content deployed in a static S3 bucket.
Hope it clarifies
Relevant content
- asked 8 months ago
- asked a year ago
- Accepted Answerasked 3 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
Thank you for the explanation @alatech.