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/%20imports-isort-%231674b1?style=flat&labelColor=ef8336 https://img.shields.io/badge/code%20style-black-000000.svg 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 nmpinstall 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'

Usage

Call the nmpinstall 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.13.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

django_node_assets-0.9.13-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file django-node-assets-0.9.13.tar.gz.

File metadata

  • Download URL: django-node-assets-0.9.13.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for django-node-assets-0.9.13.tar.gz
Algorithm Hash digest
SHA256 16aa86798f35e47c6b0c6f506b08cad6fdfc02223ba0cc0c4cb1c9d1778bbb9b
MD5 85bec3b954686a8476bde28216668db3
BLAKE2b-256 c3a77fb0af0245406754295cac45eb18994eaab4099281210468b6a83f77d5d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_node_assets-0.9.13-py3-none-any.whl
Algorithm Hash digest
SHA256 c1178faf152cb3acf89d586bd7f994c9dc36c9a5c21fe71556c25388c0f8d60f
MD5 69637c40401ee100570829a4320b8d40
BLAKE2b-256 5c688a99a3c2d6c85880b9e256104f3c18c06130605e38b1ce24d9be87c6eb49

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