Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Django Require | 242 | 253 | 1 | 6 years ago | 12 | August 22, 2016 | 4 | other | JavaScript | |
A Django staticfiles post-processor for optimizing with RequireJS. | ||||||||||
Django Aloha Edit | 19 | 2 | 7 years ago | 8 | January 11, 2014 | bsd-2-clause | Python | |||
Provides easy integration of the Aloha Editor into your Django app | ||||||||||
Backbone Tastypie Requirejs | 14 | 11 years ago | JavaScript | |||||||
Backbone.js + require.js + django-tastypie | ||||||||||
Compressor_requirejs | 9 | 7 years ago | mit | JavaScript | ||||||
Django Compressor Requirejs | 4 | 6 years ago | 3 | mit | Python | |||||
Compress requirejs-modules into bundles. | ||||||||||
Django Require I18n | 2 | 4 years ago | mit | Python | ||||||
Django management command for extracting and compiling internationalization/localization string resources used by the require.js i18n plugin. |
django-require is a Django staticfiles post-processor for optimizing with RequireJS.
require
directory into your PYTHONPATH
. If using pip, run
pip install django-require
.'require'
to your INSTALLED_APPS
setting.STATICFILES_STORAGE
setting to
'require.storage.OptimizedStaticFilesStorage'
,
'require.storage.OptimizedCachedStaticFilesStorage'
or
'require.storage.OptimizedManifestStaticFilesStorage'
.Available settings, and their default values, are shown below. You should configure this to match the layout of your project's static files. Please consult the RequireJS documentation for more information about how to build javascript using RequireJS.
# The baseUrl to pass to the r.js optimizer, relative to STATIC_ROOT.
REQUIRE_BASE_URL = "js"
# The name of a build profile to use for your project, relative to REQUIRE_BASE_URL.
# A sensible value would be 'app.build.js'. Leave blank to use the built-in default build profile.
# Set to False to disable running the default profile (e.g. if only using it to build Standalone
# Modules)
REQUIRE_BUILD_PROFILE = None
# The name of the require.js script used by your project, relative to REQUIRE_BASE_URL.
REQUIRE_JS = "require.js"
# A dictionary of standalone modules to build with almond.js.
# See the section on Standalone Modules, below.
REQUIRE_STANDALONE_MODULES = {}
# Whether to run django-require in debug mode.
REQUIRE_DEBUG = settings.DEBUG
# A tuple of files to exclude from the compilation result of r.js.
REQUIRE_EXCLUDE = ("build.txt",)
# The execution environment in which to run r.js: auto, node or rhino.
# auto will auto-detect the environment and make use of node if available and rhino if not.
# It can also be a path to a custom class that subclasses
# require.environments.Environment and defines some "args" function that
# returns a list with the command arguments to execute.
REQUIRE_ENVIRONMENT = "auto"
As a shortcut to downloading a copy of require.js from the internet, you
can simply run the require_init
management to copy a version of
require.js into your STATICFILES_DIRS
, at the location specified by
your REQUIRE_BASE_URL
and REQUIRE_JS
settings.
$ ./manage.py require_init
In almost all cases, you'll want to create a custom build profile for
your project. To help you get started, django-require can generate a
default build profile into your STATICFILES_DIRS
. Just set your
REQUIRE_BUILD_PROFILE
setting to a build profile name, and run
require_init
. A good name for a build profile would be
'app.build.js'
.
Any standalone modules that your specify with a build profile will also have a default build profile generated when you run this command.
You can run javascript modules in templates by using the
{% require_module %}
template tag.
<html>
{% load require %}
<head>
{% require_module 'main' %}
</head>
<body></body>
</html>
This template fragment would then render to something like:
<html>
<head>
<script src="/static/js/require.js" data-main="/static/js/main.js"></script>
</head>
<body></body>
</html>
If the 'main'
module was specified as a standalone module in your
REQUIRE_STANDALONE_MODULES
setting, and REQUIRE_DEBUG
is
False
, then the template fragment would instead render as:
This template fragment would then render to something like:
<html>
<head>
<script src="/static/js/main-built.js"></script>
</head>
<body></body>
</html>
As a further optimization to your code, you can build your modules to run independently of require.js, which can often speed up page load times. Standalone modules are built using the almond.js shim, so consult the almond.js documentation to make sure that it's safe to build your module in standalone mode.
To specify standalone modules, simply add them to your
REQUIRE_STANDALONE_MODULES
setting, as below:
REQUIRE_STANDALONE_MODULES = {
"main": {
# Where to output the built module, relative to REQUIRE_BASE_URL.
"out": "main-built.js",
# Optional: A build profile used to build this standalone module.
"build_profile": "main.build.js",
}
}
The r.js optimizer is run automatically whenever you call the
collectstatic
management command. The optimizer is run as a
post-processing step on your static files.
django-require provides three storage classes that are ready to use with the r.js optimizer:
require.storage.OptimizedStaticFilesStorage
- A filesystem-based
storage that runs the r.js optimizer.require.storage.OptimizedCachedStaticFilesStorage
- As above, but
fingerprints all files with an MD5 hash of their contents for HTTP
cache-busting.require.storage.OptimizedManifestStaticFilesStorage
- As above, but
fingerprints all files with an MD5 hash of their contents for HTTP
cache-busting and stores the fingerprints in a JSON file on disk instead
of using a cache. Please note that the
OptimizedManifestStaticFilesStorage
is only available in Django 1.7 and
above.You can add r.js optimization to any Django staticfiles storage class by
using the require.storage.OptimizedFilesMixin
. For example, to make
an optimizing storage that uploads to Amazon S3 using S3BotoStorage
from
django-storages:
from storages.backends.s3boto import S3BotoStorage
from require.storage import OptimizedFilesMixin
# S3 storage with r.js optimization.
class OptimizedS3BotoStorage(OptimizedFilesMixin, S3BotoStorage):
pass
# S3 storage with r.js optimization and MD5 fingerprinting.
from django.contrib.staticfiles.storage import CachedFilesMixin
class OptimizedCachedS3BotoStorage(OptimizedFilesMixin, CachedFilesMixin, S3BotoStorage):
pass
For ready-made storage classes that combine django-require with Amazon S3, check out django-require-s3.
You can run the test suite from the root of the source checkout:
test_project/manage.py test require
Test coverage reports can be generated from the same directory with:
coverage run --source='.' test_project/manage.py test require coverage html
Open htmlcov/index.html in a browser to see the HTML coverage report.
Downloads and bug tracking can be found at the main project website.
You can keep up to date with the latest announcements by joining the django-require discussion group.
The django-require project was developed by Dave Hall. You can get the code from the django-require project site.
Dave Hall is a freelance web developer, based in Cambridge, UK. You can usually find him on the Internet in a number of different places: