83 private links
This is the scope of the latest weekly most popular JS repositories.
From basic to complex, this book gives you the tools to create beautiful data visualizations.
planck.js - 2D JavaScript Physics Engine
The content of the handbook favors web technologies (HTML, CSS, DOM, and JavaScript) and those solutions that are directly built on top of these open technologies. The materials referenced and discussed in the book are either best in class or the current offering to a problem.
My approach is to use the content metadata to instruct my footer template to load extra js files. The JS is not part of the content (that’s a presentation concern), so don’t try to marry them in your markdown if you can avoid it.
Example content metadata:
+++
js = ["chart", "dropdown/latest.min"]
+++
At the bottom of the footer template, I have this:
{{- range .Params.js }}
<script src="/js/{{ . }}.js"></script>
{{- end }}