pyramid_amdjs allows to manage js and css resources as amdjs modules
config.include('pyramid_amdjs')
config.add_amd_js(
'jquery', 'pyramid_amdjs:static/lib/jquery-1.8.2.min.js',
'JQuery Library')
Then you can use jquery in your amd module
define('my-package', ['jquery'],
function($) {
$('...').
}
)
To include your module to page:
def my_view(request):
request.require_js('my-package')
On irc, use the freenode network and find us on channels, #ptahproject and #pyramid.
Documentation can be found in docs directory. You can also see it online at http://pyramid_amdjs.readthedocs.org/
Report bugs at pyramid_amdjs @ Github
pyramid_amdjs is offered under the MIT license.