Skip to main content

Integration of ViteJS in a Django project.

Project description

Django Vite

Integration of ViteJS in a Django project.

Installation

Django

pip install django-vite

Add django_vite to your INSTALLED_APPS in your settings.py (before your apps that are using it).

INSTALLED_APPS = [
    ...
    'django_vite',
    ...
]

ViteJS

Follow instructions on https://vitejs.dev/guide/. And mostly the SSR part.

Then in your ViteJS config file :

  • Set the base options the same as your STATIC_URL Django setting.
  • Set the build.outDir path to where you want the assets to compiled.
  • Set the build.manifest options to true.
  • As you are in SSR and not in SPA, you don't have an index.html that ViteJS can use to determine which files to compile. You need to tell it directly. In your ViteJS config file add the following :
export default defineConfig({
  build {
    ...
    rollupOptions: {
      input: {
        <unique key>: '<path to your asset>'
      }
    }
  }
}

Assets

As recommended on Vite's backend integration guide, your assets should include the modulepreload polyfill.

// add the beginning of your app entry
import 'vite/modulepreload-polyfill'

Usage

Configuration

  • Define a setting variable in your settings.py named DJANGO_VITE_ASSETS_PATH containing the absolute path to where your assets are built.

    • This must correspond to your build.outDir in your ViteJS configuration.
    • The DJANGO_VITE_ASSETS_PATH must be included in your STATICFILES_DIRS Django setting.
  • Define a setting variable in your settings.py named DJANGO_VITE_DEV_MODE containing a boolean defining if you want to include assets in development mode or production mode.

    • In development mode, assets are included as modules using the ViteJS webserver. This will enable HMR for your assets.
    • In production mode, assets are included as standard assets (no ViteJS webserver and HMR) like default Django static files. This means that your assets must be compiled with ViteJS before.
    • This setting may be set as the same value as your DEBUG setting in Django. But you can do what is good for yout needs.

Template tags

Include this in your base HTML template file.

{% load django_vite %}

Then in your <head> element add this :

{% vite_hmr_client %}
  • This will add a <script> tag to include the ViteJS HMR client.
  • This tag will include this script only if DJANGO_VITE_DEV_MODE is true, otherwise this will do nothing.

Then add this tag to load your scripts :

{% vite_asset '<path to your asset>' %}

This will add a <script> tag including your JS/TS script :

  • In development mode, all scripts are included as modules.
  • In development mode, all scripts are marked as async and defer.
  • You can pass a second argument to this tag to overrides attributes passed to the script tag.
  • This tag only accept JS/TS, for other type of assets, they must be included in the script itself using import statements.
  • In production mode, the library will read the manifest.json file generated by ViteJS and import all CSS files dependent of this script (before importing the script).
  • You can add as many of this tag as you want, for each input you specify in your ViteJS configuration file.
  • The path must be relative to your root key inside your ViteJS config file.
  • The path must be a key inside your manifest file manifest.json file generated by ViteJS.
  • In general, this path does not require a / at the beginning (follow your manifest.json file).
{% vite_asset_url '<path to your asset>' %}

This will generate only the URL to an asset with no tag surrounding it. Warning, this does not generate URLs for dependant assets of this one like the previous tag.

Vite Legacy Plugin

If you want to consider legacy browsers that don't support ES6 modules loading you may use @vitejs/plugin-legacy. Django Vite supports this plugin. You must add stuff in complement of other script imports in the <head> tag.

Just before your <body> closing tag add this :

{% vite_legacy_polyfills %}

This tag will do nothing in development, but in production it will loads the polyfills generated by ViteJS.

And so next to this tag you need to add another import to all the scripts you have in the head but the 'legacy' version generated by ViteJS like so :

{% vite_legacy_asset '<path to your asset>' %}

Like the previous tag, this will do nothing in development but in production, Django Vite will add a script tag with a nomodule attribute for legacy browsers. The path to your asset must contain de pattern -legacy in the file name (ex : main-legacy.js).

Miscellaneous configuration

You can redefine those variables in your settings.py :

  • DJANGO_VITE_DEV_SERVER_PROTOCOL : ViteJS webserver protocol (default : http).
  • DJANGO_VITE_DEV_SERVER_HOST : ViteJS webserver hostname (default : localhost).
  • DJANGO_VITE_DEV_SERVER_PORT : ViteJS webserver port (default : 3000)
  • DJANGO_VITE_WS_CLIENT_URL : ViteJS webserver path to the HMR client used in the vite_hmr_client tag (default : @vite/client).
  • DJANGO_VITE_MANIFEST_PATH : Absolute path (including filename) to your ViteJS manifest file. This file is generated in your DJANGO_VITE_ASSETS_PATH. But if you are in production (DEBUG is false) then it is in your STATIC_ROOT after you collected your static files.
  • DJANGO_VITE_LEGACY_POLYFILLS_MOTIF : The motif used to find the assets for polyfills inside the manifest.json (only if you use @vitejs/plugin-legacy).
  • DJANGO_VITE_STATIC_URL_PREFIX : prefix directory of your static files built by Vite. (default : "")
    • Use it if you want to avoid conflicts with other static files in your project.
    • It may be used with STATICFILES_DIRS.
    • You also need to add this prefix inside vite config's base.
      e.g.:
    # settings.py
    DJANGO_VITE_STATIC_URL_PREFIX = 'bundler'
    STATICFILES_DIRS = (('bundler', '/srv/app/bundler/dist'),)
    
    // vite.config.js
    export default defineConfig({
      base: '/static/bundler/',
      ...
    })
    

Notes

  • In production mode, all generated path are prefixed with the STATIC_URL setting of Django.

Example

If you are struggling on how to setup a project using Django / ViteJS and Django Vite, I've made an example project here.

Thanks

Thanks to Evan You for the ViteJS library.

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-vite-1.3.0.tar.gz (13.0 kB view details)

Uploaded Source

Built Distribution

django_vite-1.3.0-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file django-vite-1.3.0.tar.gz.

File metadata

  • Download URL: django-vite-1.3.0.tar.gz
  • Upload date:
  • Size: 13.0 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.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for django-vite-1.3.0.tar.gz
Algorithm Hash digest
SHA256 abf445ed87e0f0fba8d5ad724cb0c73e45ab1e31ca4353a70b5a6c8abe2096c3
MD5 6f23e2ec591faea1ea6fd0e31b6d2de9
BLAKE2b-256 00e1fe6206040b1f9bfb887aad8c1838aacd9f3a7f9a2f3342dff59526e6f80b

See more details on using hashes here.

File details

Details for the file django_vite-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: django_vite-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for django_vite-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 510724570d9e48201837388a53e8fdf59d96f0b8ea9c44f5eca597906d507ccc
MD5 9b3938e0b8656af4399a83c79f45562e
BLAKE2b-256 cdc39125b1e7b260bbd33d5e9f878eb172e6549086b74a3c5518833e46f6a46c

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