react-with-webpack5-redux-docker

2.0.2 • Public • Published

MY REACT APP WITH WEBPACK 5

Known Vulnerabilities NPM version GitHub issues Licence

Install Boilerplate

npm install -g react-with-webpack5-redux-docker

npx generate-react-boilerplate my-app

PRODUCTION APP SETUP

  • Copy the index.html, favicon.ico, manifest.json file and all your directory folders into the src folder
  • You can delete the public folder
  • Inside the index.html file remove any %PUBLIC_FOLDER% in the link tags
  • Run npm start
  • To build npm run build
  • In your production file, create an .htaccess file and add the following lines.
# Map all non-existing URLs to be processed by index.html,
# so any URL that doesn't point to a JS file, CSS file, etc etc...
# goes through my React app.

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.html [L]
</IfModule>

DOCKERIZE YOUR REACT APP (LIVE RELOAD INCLUSIVE)

  • Create a new Dockerfile and add the following lines:
FROM node:16-alpine3.15
WORKDIR /app
COPY . /app
EXPOSE 8080
RUN apk add --no-cache python3 make g++
RUN npm install
CMD ["npm", "run", "dev"]

Create a new docker-compose.yml and add the following lines:

version: "3.9"

services:
  app:
    build:
      context: .
    ports:
    - "8080:8080"
    environment:
      CHOKIDAR_USEPOLLING: "true"
    volumes:
      - /app/node_modules
      - .:/app
  • To start run docker-compose up
  • To add new packages after installing them run docker-compose down -v, docker-compose build and docker-compose up

Package Sidebar

Install

npm i react-with-webpack5-redux-docker

Weekly Downloads

1

Version

2.0.2

License

ISC

Unpacked Size

201 kB

Total Files

61

Last publish

Collaborators

  • ea.ikechukwukalu