Skip to main content

A package to reactify Django app.

Project description

Django Reactify is an app that allows developers to add and use React components in your Django app without using create-react-app.

Detailed documentation is in the “docs” directory.

Quick start

  1. Install the package via the following command:

    pip install django-reactify

  2. Add “reactify” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'reactify',
    ]
  3. Run the following command:

    Ensure that the templates directory exists in the specified app name.

    python manage.py reactify <app_name>

    • Replace the app name with the existing Django app you want to reactify.

    • This command does the following:

      • Creates barbel and webpack configuration files in the app’s root directory.

      • Creates package.json file with the scripts to run React development server.

      • Creates a react folder directory with the necessary files and subdirectories where you can add your react component files and redux actions and reducers.

      • Creates a react folder directory with the necessary files and subdirectories where you can add your react component files and redux actions and reducers.

      • Installs the basic npm development packages.

      • starts the react development server that listens on the changes made to the react components and compile a minimal js file that is rendered to the view.

  4. cd to the django app directory and run the following command:

    npm run dev

  5. Add the new view function to the views file to render the compiled version of the react app.

    def index(request):

    template_name = ‘<app_name>/index.html’

    return render(request, template_name)

  6. Add more React components to the react app’s component folder.

Managing React Routes

If you don’t configure Django urls to accept the Routes declared in the react, you will encouter 404 error.

To fix this, lets say you have react routes as follows:

<Switch>

<Route exact path=”/” component={Main} />

<Route exact path=”/login” component={LoginPage} />

<Route exact path=”/services” component={ServicesPage} />

<Route exact path=”/about” component={AboutPage} />

In the app urls file use re_path,

from django.urls import re_path

from .views import index

urlpatterns = [

re_path(r’’, index, name=”home”), ]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-reactify-1.3.7.tar.gz (72.8 kB view details)

Uploaded Source

Built Distribution

django_reactify-1.3.7-py3-none-any.whl (75.5 kB view details)

Uploaded Python 3

File details

Details for the file django-reactify-1.3.7.tar.gz.

File metadata

  • Download URL: django-reactify-1.3.7.tar.gz
  • Upload date:
  • Size: 72.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.4

File hashes

Hashes for django-reactify-1.3.7.tar.gz
Algorithm Hash digest
SHA256 67bc6a5071080b6bb2ff4d2078c040d3d460b7c7e938b8a9b34cbf438f171c23
MD5 8faec1497e339b073b7518a21c938e9a
BLAKE2b-256 614b507f4a05efddd1535adc047d7e3c31be711ce3b1d0eaed98a371ea2fe4af

See more details on using hashes here.

File details

Details for the file django_reactify-1.3.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_reactify-1.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 e4ebc896799e5715f9bbeff5b42664d4ecfbadec081745a51e66bb585a761d29
MD5 2fe7e970663a858da13a3c1eee4e4d47
BLAKE2b-256 b0b17952ab9a34d86ead3975fcde49a9521403f624a69193889852d2487bd4cd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page