This is a unmaintained fork of https://github.com/noirbizarre/django.js/
It contains work from https://github.com/pcompassion/django.js commit 79fe23c4c198c922f05f0d01c9ed16c0960a942e with fixes for Django3 and Py3 compatibility.
Django.js provides tools for JavaScript development with Django.
Django.js is inspired from:
This is currently a work in progress (API wil not be stable before 1.0) so don't expect it to be perfect but please submit an issue for any bug you find or any feature you want.
Django.js requires Python 2.6+ and Django 1.4.2+.
You can install Django.js with pip:
$ pip install django.jsor with easy_install:
$ easy_install django.jsAdd djangojs to your settings.INSTALLED_APPS.
Add djangojs.urls to your root URL_CONF:
urlpatterns = patterns('',
...
url(r'^djangojs/', include('djangojs.urls')),
...
)The documentation is hosted on Read the Docs