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 to install and to serve static assets via Node.js package manager infrastructure. The application exposes 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` metatadata 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.15.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.15-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for django_node_assets-0.9.15.tar.gz
Algorithm Hash digest
SHA256 60a52dbfc43add1b58a9134e7b761cc25abc553be43af1325261ececb397e403
MD5 39da0ec9f81c1e52f3ba88347d7d249c
BLAKE2b-256 6f2cb093145bcec46bf6eff7eeee9e1b98c9d1fabf0b9dae49715e992d094dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_node_assets-0.9.15-py3-none-any.whl
Algorithm Hash digest
SHA256 a5f8105ffe947bd049ddc2aca40694f86837a0ffbd627686252704b2b330ddcc
MD5 bb472edb99717c7c15ea481913e727df
BLAKE2b-256 866a007d8c79138ef71e96f37e714d2582fce7c2193b2e0c752e017fcda8e8c8

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