# Django Next.js
[![](https://img.shields.io/pypi/v/django-nextjs.svg)](https://pypi.python.org/pypi/django-nextjs/)
[![](https://github.com/QueraTeam/django-nextjs/workflows/tests/badge.svg)](https://github.com/QueraTeam/django-nextjs/actions)
[![](https://img.shields.io/github/license/QueraTeam/django-nextjs.svg)](https://github.com/QueraTeam/django-nextjs/blob/master/LICENSE)
[![](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
Next.js integration for Django projects.
So you want to use both Django and Next.js in your project. There are two scenarios:
1. You are starting a new project and you want to use Django as back-end and Next.js as front-end.
Django only serves API requests. All front-end code lives in Next.js and you don't write any Django template.
In this scenario you **don't need** this package (although you can use it).
You simply start both Django and Next.js servers and point your public webserver to Next.js.
2. You need both Django templates and Next.js at the same time and those pages should easily link to each other.
Maybe you have an existing Django project which has pages rendered by Django template
and want some new pages in Next.js.
Or you want to migrate your front-end to Next.js but since the project is large, you need to do it gradually.
In this scenario, **this package is for you!**
## How does it work?
From a [comment on StackOverflow]:
> Run 2 ports on the same server. One for Django (public facing)
> and one for Next.js (internal).
> Let Django handle all web requests.
> For each request, query Next.js from Django view to get HTML response.
> Return that exact HTML response from Django view.
## Installation
- Install the latest version from PyPI.
```shell
pip install django-nextjs
```
- Add `django_nextjs.apps.DjangoNextJSConfig` to `INSTALLED_APPS`.
- Set up Next.js URLs depending on your environment.
### Setup Next.js URLs (Development Environment)
If you're serving your site under ASGI during development,
use [Django Channels](https://channels.readthedocs.io/en/stable/) and
add `NextJSProxyHttpConsumer`, `NextJSProxyWebsocketConsumer` to `asgi.py` like the following example.
**Note:** We recommend using ASGI and Django Channels,
because it is required for [fast refresh](https://nextjs.org/docs/architecture/fast-refresh) (hot module replacement) to work properly in Nextjs 12+.
```python
import os
from django.core.asgi import get_asgi_application
from django.urls import re_path, path
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings")
django_asgi_app = get_asgi_application()
from channels.auth import AuthMiddlewareStack
from channels.routing import ProtocolTypeRouter, URLRouter
from django_nextjs.proxy import NextJSProxyHttpConsumer, NextJSProxyWebsocketConsumer
from django.conf import settings
# put your custom routes here if you need
http_routes = [re_path(r"", django_asgi_app)]
websocket_routers = []
if settings.DEBUG:
http_routes.insert(0, re_path(r"^(?:_next|__next|next).*", NextJSProxyHttpConsumer.as_asgi()))
websocket_routers.insert(0, path("_next/webpack-hmr", NextJSProxyWebsocketConsumer.as_asgi()))
application = ProtocolTypeRouter(
{
# Django's ASGI application to handle traditional HTTP and websocket requests.
"http": URLRouter(http_routes),
"websocket": AuthMiddlewareStack(URLRouter(websocket_routers)),
# ...
}
)
```
Otherwise (if serving under WSGI during development), add the following to the beginning of `urls.py`:
```python
path("", include("django_nextjs.urls"))
```
**Warning:** If you are serving under ASGI, do NOT add this
to your `urls.py`. It may cause deadlocks.
### Setup Next.js URLs (Production Environment)
In production, use a reverse proxy like Nginx or Caddy:
| URL | Action |
| ------------------- | ------------------------------------------ |
| `/_next/static/...` | Serve `NEXTJS_PATH/.next/static` directory |
| `/_next/...` | Proxy to `http://localhost:3000` |
| `/next/...` | Serve `NEXTJS_PATH/public/next` directory |
Example config for Nginx:
```conf
location /_next/static/ {
alias NEXTJS_PATH/.next/static/;
expires max;
add_header Cache-Control "public";
}
location /_next/ {
proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /next/ {
alias NEXTJS_PATH/public/next/;
expires max;
add_header Cache-Control "public";
}
```
## Usage
Start Next.js server:
```shell
# Development:
$ npm run dev
# Production:
$ npm run build
$ npm run start
```
Start by developing your pages in Next.js, Then define a Django URL for each Next.js page. Here's an example of how you can do this:
```python
from django_nextjs.views import nextjs_page
urlpatterns = [
path("/nextjs/page", nextjs_page(), name="nextjs_page"),
]
```
Even though it's not recommended, sometimes you might need to add some custom steps before showing a Next.js page in Django. However, **we advise moving this logic to Next.js to ensure it's applied even during client-side redirects**. If you find yourself in this situation, you can create an asynchronous view for each page as demonstrated below:
```python
from django_nextjs.render import render_nextjs_page
async def jobs(request):
# Your custom logic
return await render_nextjs_page(request)
```
## Customizing the HTML Response
You can modify the HTML code that Next.js returns in your Django code.
Avoiding duplicate code for the navbar and footer is a common use case
for this if you are using both Next.js and Django templates.
Without it, you would have to write and maintain two separate versions
of your navbar and footer (a Django template version and a Next.js version).
However, you can simply create a Django template for your navbar and insert its code
at the beginning of `<body>` tag returned from Next.js.
To enable this feature, you need to customize the document and root layout
in Next.js and make the following adjustments:
- Add `id="__django_nextjs_body"` as the first attribute of `<body>` element.
- Add `<div id="__django_nextjs_body_begin" />` as the first element inside `<body>`.
- Add `<div id="__django_nextjs_body_end" />` as the last element inside `<body>`.
NOTE: Currently HTML customization is not working with [app router](https://nextjs.org/docs/app) (Next.js 13+).
Read
[this doc](https://nextjs.org/docs/pages/building-your-application/routing/custom-document)
and customize your Next.js document:
```jsx
// pages/_document.jsx (or .tsx)
...
<body id="__django_nextjs_body">
<div id="__django_nextjs_body_begin" />
<Main />
<NextScript />
<div id="__django_nextjs_body_end" />
</body>
...
```
<!-- If you are using Next.js 13+, you also need to
[customize the root layout](https://nextjs.org/docs/app/api-reference/file-conventions/layout)
in `app` directory:
```jsx
// app/layout.jsx (or .tsx)
...
<body id="__django_nextjs_body" className={inter.className}>
<div id="__django_nextjs_body_begin" />
{children}
<div id="__django_nextjs_body_end" />
</body>
...
``` -->
Write a Django template that extends `django_nextjs/document_base.html`:
```django
{% extends "django_nextjs/document_base.html" %}
{% block head %}
<!-- ... the content you want to place at the beginning of "head" tag ... -->
{{ block.super }}
<!-- ... the content you want to place at the end of "head" tag ... -->
{% endblock %}
{% block body %}
... the content you want to place at the beginning of "body" tag ...
... e.g. include the navbar template ...
{{ block.super }}
... the content you want to place at the end of "body" tag ...
... e.g. include the footer template ...
{% endblock %}
```
Pass the template name to `nextjs_page` or `render_nextjs_page`:
```python
from django_nextjs.render import render_nextjs_page
from django_nextjs.views import nextjs_page
async def jobs(request):
return await render_nextjs_page(request, template_name="path/to/template.html")
urlpatterns = [
path("/nextjs/page", nextjs_page(template_name="path/to/template.html"), name="nextjs_page"),
path("/jobs", jobs, name="jobs_page")
]
```
## Notes
- If you want to add a file to `public` directory of Next.js,
that file should be in `public/next` subdirectory to work correctly.
- If you're using Django channels, make sure all your middlewares are
[async-capable](https://docs.djangoproject.com/en/dev/topics/http/middleware/#asynchronous-support).
- To avoid "Too many redirects" error, you may need to add `APPEND_SLASH = False` in your Django project's `settings.py`. Also, do not add `/` at the end of nextjs paths in `urls.py`.
- This package does not provide a solution for passing data from Django to Next.js. The Django Rest Framework, GraphQL, or similar solutions should still be used.
- The Next.js server will not be run by this package. You will need to run it yourself.
## Settings
Default settings:
```python
NEXTJS_SETTINGS = {
"nextjs_server_url": "http://127.0.0.1:3000",
"ensure_csrf_token": True,
}
```
### `nextjs_server_url`
The URL of Next.js server (started by `npm run dev` or `npm run start`)
### `ensure_csrf_token`
If the user does not have a CSRF token, ensure that one is generated and included in the initial request to the Next.js server by calling Django's `django.middleware.csrf.get_token`. If `django.middleware.csrf.CsrfViewMiddleware` is installed, the initial response will include a `Set-Cookie` header to persist the CSRF token value on the client. This behavior is enabled by default.
#### When You Need to `ensure_csrf_token`?
You may need to issue GraphQL POST requests to fetch data in Next.js `getServerSideProps`. If this is the user's first request, there will be no CSRF cookie, causing the request to fail since GraphQL uses POST even for data fetching. However, as long as `getServerSideProps` functions are side-effect free (i.e., they don't use HTTP unsafe methods or GraphQL mutations), this should be fine from a security perspective. Read more [here](https://docs.djangoproject.com/en/3.2/ref/csrf/#is-posting-an-arbitrary-csrf-token-pair-cookie-and-post-data-a-vulnerability).
## Development
- Install development dependencies in your virtualenv with `pip install -e '.[dev]'`
- Install pre-commit hooks using `pre-commit install`.
## References
- https://github.com/yourlabs/djnext
- [comment on StackOverflow]
[comment on stackoverflow]: https://stackoverflow.com/questions/54252943/is-there-a-way-to-integrate-django-with-next-js#comment110078700_54252943
## License
MIT
Raw data
{
"_id": null,
"home_page": "https://github.com/QueraTeam/django-nextjs",
"name": "django-nextjs",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "django, next, nextjs, django-nextjs",
"author": "Mohammad Javad Naderi <mjnaderi@gmail.com>, Danial Keimasi <danialkeimasi@gmail.com>",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/70/77/2d82a189a23ef0c735c8f415907e685333301af701b6f17aa30e8295360a/django_nextjs-3.2.0.tar.gz",
"platform": null,
"description": "# Django Next.js\n\n[![](https://img.shields.io/pypi/v/django-nextjs.svg)](https://pypi.python.org/pypi/django-nextjs/)\n[![](https://github.com/QueraTeam/django-nextjs/workflows/tests/badge.svg)](https://github.com/QueraTeam/django-nextjs/actions)\n[![](https://img.shields.io/github/license/QueraTeam/django-nextjs.svg)](https://github.com/QueraTeam/django-nextjs/blob/master/LICENSE)\n[![](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\nNext.js integration for Django projects.\n\nSo you want to use both Django and Next.js in your project. There are two scenarios:\n\n1. You are starting a new project and you want to use Django as back-end and Next.js as front-end.\n Django only serves API requests. All front-end code lives in Next.js and you don't write any Django template.\n\n In this scenario you **don't need** this package (although you can use it).\n You simply start both Django and Next.js servers and point your public webserver to Next.js.\n\n2. You need both Django templates and Next.js at the same time and those pages should easily link to each other.\n Maybe you have an existing Django project which has pages rendered by Django template\n and want some new pages in Next.js.\n Or you want to migrate your front-end to Next.js but since the project is large, you need to do it gradually.\n\n In this scenario, **this package is for you!**\n\n## How does it work?\n\nFrom a [comment on StackOverflow]:\n\n> Run 2 ports on the same server. One for Django (public facing)\n> and one for Next.js (internal).\n> Let Django handle all web requests.\n> For each request, query Next.js from Django view to get HTML response.\n> Return that exact HTML response from Django view.\n\n## Installation\n\n- Install the latest version from PyPI.\n\n ```shell\n pip install django-nextjs\n ```\n\n- Add `django_nextjs.apps.DjangoNextJSConfig` to `INSTALLED_APPS`.\n\n- Set up Next.js URLs depending on your environment.\n\n### Setup Next.js URLs (Development Environment)\n\nIf you're serving your site under ASGI during development,\nuse [Django Channels](https://channels.readthedocs.io/en/stable/) and\nadd `NextJSProxyHttpConsumer`, `NextJSProxyWebsocketConsumer` to `asgi.py` like the following example.\n\n**Note:** We recommend using ASGI and Django Channels,\nbecause it is required for [fast refresh](https://nextjs.org/docs/architecture/fast-refresh) (hot module replacement) to work properly in Nextjs 12+.\n\n```python\nimport os\n\nfrom django.core.asgi import get_asgi_application\nfrom django.urls import re_path, path\n\nos.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"myproject.settings\")\ndjango_asgi_app = get_asgi_application()\n\nfrom channels.auth import AuthMiddlewareStack\nfrom channels.routing import ProtocolTypeRouter, URLRouter\nfrom django_nextjs.proxy import NextJSProxyHttpConsumer, NextJSProxyWebsocketConsumer\n\nfrom django.conf import settings\n\n# put your custom routes here if you need\nhttp_routes = [re_path(r\"\", django_asgi_app)]\nwebsocket_routers = []\n\nif settings.DEBUG:\n http_routes.insert(0, re_path(r\"^(?:_next|__next|next).*\", NextJSProxyHttpConsumer.as_asgi()))\n websocket_routers.insert(0, path(\"_next/webpack-hmr\", NextJSProxyWebsocketConsumer.as_asgi()))\n\n\napplication = ProtocolTypeRouter(\n {\n # Django's ASGI application to handle traditional HTTP and websocket requests.\n \"http\": URLRouter(http_routes),\n \"websocket\": AuthMiddlewareStack(URLRouter(websocket_routers)),\n # ...\n }\n)\n```\n\nOtherwise (if serving under WSGI during development), add the following to the beginning of `urls.py`:\n\n```python\npath(\"\", include(\"django_nextjs.urls\"))\n```\n\n**Warning:** If you are serving under ASGI, do NOT add this\nto your `urls.py`. It may cause deadlocks.\n\n### Setup Next.js URLs (Production Environment)\n\nIn production, use a reverse proxy like Nginx or Caddy:\n\n| URL | Action |\n| ------------------- | ------------------------------------------ |\n| `/_next/static/...` | Serve `NEXTJS_PATH/.next/static` directory |\n| `/_next/...` | Proxy to `http://localhost:3000` |\n| `/next/...` | Serve `NEXTJS_PATH/public/next` directory |\n\nExample config for Nginx:\n\n```conf\nlocation /_next/static/ {\n alias NEXTJS_PATH/.next/static/;\n expires max;\n add_header Cache-Control \"public\";\n}\nlocation /_next/ {\n proxy_pass http://127.0.0.1:3000;\n proxy_set_header Host $http_host;\n proxy_set_header X-Real-IP $remote_addr;\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n proxy_set_header X-Forwarded-Proto $scheme;\n}\nlocation /next/ {\n alias NEXTJS_PATH/public/next/;\n expires max;\n add_header Cache-Control \"public\";\n}\n```\n\n## Usage\n\nStart Next.js server:\n\n```shell\n# Development:\n$ npm run dev\n\n# Production:\n$ npm run build\n$ npm run start\n```\n\nStart by developing your pages in Next.js, Then define a Django URL for each Next.js page. Here's an example of how you can do this:\n\n```python\nfrom django_nextjs.views import nextjs_page\n\nurlpatterns = [\n path(\"/nextjs/page\", nextjs_page(), name=\"nextjs_page\"),\n]\n```\n\nEven though it's not recommended, sometimes you might need to add some custom steps before showing a Next.js page in Django. However, **we advise moving this logic to Next.js to ensure it's applied even during client-side redirects**. If you find yourself in this situation, you can create an asynchronous view for each page as demonstrated below:\n\n```python\nfrom django_nextjs.render import render_nextjs_page\n\nasync def jobs(request):\n # Your custom logic\n return await render_nextjs_page(request)\n```\n\n## Customizing the HTML Response\n\nYou can modify the HTML code that Next.js returns in your Django code.\n\nAvoiding duplicate code for the navbar and footer is a common use case\nfor this if you are using both Next.js and Django templates.\nWithout it, you would have to write and maintain two separate versions\nof your navbar and footer (a Django template version and a Next.js version).\nHowever, you can simply create a Django template for your navbar and insert its code\nat the beginning of `<body>` tag returned from Next.js.\n\nTo enable this feature, you need to customize the document and root layout\nin Next.js and make the following adjustments:\n\n- Add `id=\"__django_nextjs_body\"` as the first attribute of `<body>` element.\n- Add `<div id=\"__django_nextjs_body_begin\" />` as the first element inside `<body>`.\n- Add `<div id=\"__django_nextjs_body_end\" />` as the last element inside `<body>`.\n\nNOTE: Currently HTML customization is not working with [app router](https://nextjs.org/docs/app) (Next.js 13+).\n\nRead\n[this doc](https://nextjs.org/docs/pages/building-your-application/routing/custom-document)\nand customize your Next.js document:\n\n```jsx\n// pages/_document.jsx (or .tsx)\n...\n<body id=\"__django_nextjs_body\">\n <div id=\"__django_nextjs_body_begin\" />\n <Main />\n <NextScript />\n <div id=\"__django_nextjs_body_end\" />\n</body>\n...\n```\n\n<!-- If you are using Next.js 13+, you also need to\n[customize the root layout](https://nextjs.org/docs/app/api-reference/file-conventions/layout)\nin `app` directory:\n\n```jsx\n// app/layout.jsx (or .tsx)\n...\n<body id=\"__django_nextjs_body\" className={inter.className}>\n <div id=\"__django_nextjs_body_begin\" />\n {children}\n <div id=\"__django_nextjs_body_end\" />\n</body>\n...\n``` -->\n\nWrite a Django template that extends `django_nextjs/document_base.html`:\n\n```django\n{% extends \"django_nextjs/document_base.html\" %}\n\n\n{% block head %}\n <!-- ... the content you want to place at the beginning of \"head\" tag ... -->\n {{ block.super }}\n <!-- ... the content you want to place at the end of \"head\" tag ... -->\n{% endblock %}\n\n\n{% block body %}\n ... the content you want to place at the beginning of \"body\" tag ...\n ... e.g. include the navbar template ...\n {{ block.super }}\n ... the content you want to place at the end of \"body\" tag ...\n ... e.g. include the footer template ...\n{% endblock %}\n```\n\nPass the template name to `nextjs_page` or `render_nextjs_page`:\n\n```python\nfrom django_nextjs.render import render_nextjs_page\nfrom django_nextjs.views import nextjs_page\n\nasync def jobs(request):\n return await render_nextjs_page(request, template_name=\"path/to/template.html\")\n\nurlpatterns = [\n path(\"/nextjs/page\", nextjs_page(template_name=\"path/to/template.html\"), name=\"nextjs_page\"),\n path(\"/jobs\", jobs, name=\"jobs_page\")\n]\n\n```\n\n## Notes\n\n- If you want to add a file to `public` directory of Next.js,\n that file should be in `public/next` subdirectory to work correctly.\n- If you're using Django channels, make sure all your middlewares are\n [async-capable](https://docs.djangoproject.com/en/dev/topics/http/middleware/#asynchronous-support).\n- To avoid \"Too many redirects\" error, you may need to add `APPEND_SLASH = False` in your Django project's `settings.py`. Also, do not add `/` at the end of nextjs paths in `urls.py`.\n- This package does not provide a solution for passing data from Django to Next.js. The Django Rest Framework, GraphQL, or similar solutions should still be used.\n- The Next.js server will not be run by this package. You will need to run it yourself.\n\n## Settings\n\nDefault settings:\n\n```python\n NEXTJS_SETTINGS = {\n \"nextjs_server_url\": \"http://127.0.0.1:3000\",\n \"ensure_csrf_token\": True,\n }\n```\n\n### `nextjs_server_url`\n\nThe URL of Next.js server (started by `npm run dev` or `npm run start`)\n\n### `ensure_csrf_token`\n\nIf the user does not have a CSRF token, ensure that one is generated and included in the initial request to the Next.js server by calling Django's `django.middleware.csrf.get_token`. If `django.middleware.csrf.CsrfViewMiddleware` is installed, the initial response will include a `Set-Cookie` header to persist the CSRF token value on the client. This behavior is enabled by default.\n\n#### When You Need to `ensure_csrf_token`?\n\nYou may need to issue GraphQL POST requests to fetch data in Next.js `getServerSideProps`. If this is the user's first request, there will be no CSRF cookie, causing the request to fail since GraphQL uses POST even for data fetching. However, as long as `getServerSideProps` functions are side-effect free (i.e., they don't use HTTP unsafe methods or GraphQL mutations), this should be fine from a security perspective. Read more [here](https://docs.djangoproject.com/en/3.2/ref/csrf/#is-posting-an-arbitrary-csrf-token-pair-cookie-and-post-data-a-vulnerability).\n\n## Development\n\n- Install development dependencies in your virtualenv with `pip install -e '.[dev]'`\n- Install pre-commit hooks using `pre-commit install`.\n\n## References\n\n- https://github.com/yourlabs/djnext\n- [comment on StackOverflow]\n\n[comment on stackoverflow]: https://stackoverflow.com/questions/54252943/is-there-a-way-to-integrate-django-with-next-js#comment110078700_54252943\n\n## License\n\nMIT\n",
"bugtrack_url": null,
"license": null,
"summary": "Next.js + Django integration",
"version": "3.2.0",
"project_urls": {
"Download": "https://github.com/QueraTeam/django-nextjs",
"Homepage": "https://github.com/QueraTeam/django-nextjs"
},
"split_keywords": [
"django",
" next",
" nextjs",
" django-nextjs"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "728cb6d7e4353e2a6476fc5289112be162c532ff79e611f109e2b1c9dff891b1",
"md5": "3840c13350e6b6f17a68fced6e5501cd",
"sha256": "9ea2cfc39ece37b0f13fcdd260c948bf37e17b44956f7394fb6ac9537123244c"
},
"downloads": -1,
"filename": "django_nextjs-3.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3840c13350e6b6f17a68fced6e5501cd",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12064,
"upload_time": "2024-07-12T14:28:21",
"upload_time_iso_8601": "2024-07-12T14:28:21.510130Z",
"url": "https://files.pythonhosted.org/packages/72/8c/b6d7e4353e2a6476fc5289112be162c532ff79e611f109e2b1c9dff891b1/django_nextjs-3.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70772d82a189a23ef0c735c8f415907e685333301af701b6f17aa30e8295360a",
"md5": "d3a16e955bb59d7d06091845b8531814",
"sha256": "adeeb3a66ce110a1594338849dd13847935b083e1ad17373d0eeda1f386f1179"
},
"downloads": -1,
"filename": "django_nextjs-3.2.0.tar.gz",
"has_sig": false,
"md5_digest": "d3a16e955bb59d7d06091845b8531814",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16134,
"upload_time": "2024-07-12T14:28:24",
"upload_time_iso_8601": "2024-07-12T14:28:24.232426Z",
"url": "https://files.pythonhosted.org/packages/70/77/2d82a189a23ef0c735c8f415907e685333301af701b6f17aa30e8295360a/django_nextjs-3.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-07-12 14:28:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "QueraTeam",
"github_project": "django-nextjs",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "django-nextjs"
}