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
Install the package via the following command:
pip install django-reactify
Add “reactify” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'reactify', ]
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.
cd to the django app directory and run the following command:
npm run dev
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)
Add more React components to the react app’s component folder.
Enjoy coding!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-reactify-1.3.4.tar.gz
.
File metadata
- Download URL: django-reactify-1.3.4.tar.gz
- Upload date:
- Size: 53.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0f1bd667823e399d690b86c2866184419fa295c515fdeb4cce49d4e3c5f606b |
|
MD5 | 9617e01c37a054c0a00446d6a8631cfe |
|
BLAKE2b-256 | 03858bab14b5377f3739431e55c89878cc214766a281aa8d43a59ac4b6af805c |
File details
Details for the file django_reactify-1.3.4-py3-none-any.whl
.
File metadata
- Download URL: django_reactify-1.3.4-py3-none-any.whl
- Upload date:
- Size: 75.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9b98c74fed0a51753e071ce3ab62461a8cb769f3e771b0cd80405c77654da5c |
|
MD5 | bea735c904404614628983a1ffe8cb52 |
|
BLAKE2b-256 | 22f52c6ea8b13b548c5b649da166f56e79f0011362d2a516707ff1cebb58fcf6 |