Skip to main content

The Django application that allows to install and serve assets via Node.js package manager infrastructure.

Project description

https://badge.fury.io/py/django-node-assets.svg https://img.shields.io/badge/linter-ruff-FF69B4 https://github.com/whitespy/django-node-assets/actions/workflows/code_quality_check.yml/badge.svg

The Django application that allows installing and serving static assets via Node.js package manager infrastructure. The application exposes a management command to install dependencies from your package.json and several static files finders to find files from installed node packages and exclude metadata of node packages and unwanted files when static files will be collected via Django’s collectstatic management command execution.

Features

  • Avoiding vendoring static assets in your repository like jQuery plugins, Bootstrap toolkit, etc

  • Avoiding mess in STATIC_ROOT through exclusion node packages’ metadata and unwanted files

  • Installing dependencies by Django’s management command

Installation

$ pip install django-node-assets

Configuration

Add ‘django_node_assets’ to your INSTALLED_APPS:

INSTALLED_APPS = [
    ...
    "django_node_assets",
]

Add NodeModulesFinder to STATICFILES_FINDERS:

STATICFILES_FINDERS = [
    "django.contrib.staticfiles.finders.FileSystemFinder",
    "django.contrib.staticfiles.finders.AppDirectoriesFinder",
    "django_node_assets.finders.NodeModulesFinder",
]

Specify absolute path to the package.json file:

NODE_PACKAGE_JSON = "/var/assets/package.json"

Specify the absolute path to a directory where the npminstall management command will install assets:

NODE_MODULES_ROOT = "/var/assets/node_modules"

Override path to the node package manager executable (optional)

NODE_PACKAGE_MANAGER_EXECUTABLE = "/usr/local/bin/npm"

Override options of the node package manager install command (optional)

NODE_PACKAGE_MANAGER_INSTALL_OPTIONS = ["--dry-run"]

Defaults to –no-package-lock, –production.

Usage

Call the npminstall management command to install dependencies specified in the package.json

$ python manage.py npminstall

Use Django’s static template tag to link installed assets

{% load static %}

<link rel="stylesheet" type="text/css" href="{% static 'bootstrap/dist/css/bootstrap.min.css' %}">
<!-- Some amazing markup -->
<script src="{% static 'jquery/dist/jquery.min.js' %}"></script>
<script src="{% static 'bootstrap/dist/js/bootstrap.js' %}"></script>

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_node_assets-0.9.16.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_node_assets-0.9.16-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file django_node_assets-0.9.16.tar.gz.

File metadata

  • Download URL: django_node_assets-0.9.16.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for django_node_assets-0.9.16.tar.gz
Algorithm Hash digest
SHA256 4a7fcaf0337153b4579cf98a18862362752ccea545d8253a434cdd1d43042289
MD5 8382c2bbaf9a0f2923d8ab1c8f975d8e
BLAKE2b-256 620032c09894e6ad580667d73a5cf046a47740aad8fdc7a5f24ce57af998800d

See more details on using hashes here.

File details

Details for the file django_node_assets-0.9.16-py3-none-any.whl.

File metadata

File hashes

Hashes for django_node_assets-0.9.16-py3-none-any.whl
Algorithm Hash digest
SHA256 62bc9ccbebf1917df5df61eaf338bc057fd86f08cbdc11c26d1210227706c829
MD5 739c43c5b2c348bd51d7abaaf32a6292
BLAKE2b-256 6e5f62641e1a766009844199c07d8dcf7824a7bcac083d93b5b7df510992a56a

See more details on using hashes here.

Supported by

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