Django Next.js
Next.js integration for Django projects.
So you want to use both Django and Next.js in your project. There are two scenarios:
-
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.
-
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.
pip install django-nextjs
-
Add
django_nextjs.apps.DjangoNextJSConfig
toINSTALLED_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 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 (hot module replacement) to work properly in Nextjs 12+.
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
:
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 |
Pass x-real-ip
header when proxying /_next/
. Example config for Nginx:
location /_next/static/ {
alias NEXTJS_PATH/.next/static/;
expires max;
add_header Cache-Control "public";
}
location /_next/ {
proxy_set_header x-real-ip $remote_addr;
proxy_pass http://127.0.0.1:3000;
}
location /next/ {
alias NEXTJS_PATH/public/next/;
expires max;
add_header Cache-Control "public";
}
Usage
Start Next.js server:
# Development:
$ npm run dev
# Production:
$ npm run build
$ npm run start
Develop your pages in Next.js. Write a django URL and an async view for each page like this:
from django.http import HttpResponse
from django_nextjs.render import render_nextjs_page
async def jobs(request):
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 (Next.js 13+).
Read this doc and customize your Next.js document:
// 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>
...
Write a django template that extends django_nextjs/document_base.html
:
{% 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 render_nextjs_page
:
async def jobs(request):
return await render_nextjs_page(request, "path/to/template.html")
Notes
- If you want to add a file to
public
directory of Next.js, that file should be inpublic/next
subdirectory to work correctly. - If you're using django channels, make sure all your middlewares are async-capable.
- To avoid "Too many redirects" error, you may need to add
APPEND_SLASH = False
in your Django project'ssettings.py
. Also, do not add/
at the end of nextjs paths inurls.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:
NEXTJS_SETTINGS = {
"nextjs_server_url": "http://127.0.0.1:3000",
}
nextjs_server_url
The URL of Next.js server (started by npm run dev
or npm run start
)
Development
- Install development dependencies in your virtualenv with
pip install -e '.[dev]'
- Install pre-commit hooks using
pre-commit install
.
References
License
MIT