locale: en-CA title: Converting a dynamic site into static HTML documents canonical: https://renoirboulanger.com/blog/2015/05/converting-dynamic-site-static-copy/ date: '2015-05-20T13:44:11-04:00' preamble: disable: true text: ' ' coverImage: src: ~/assets/content/blog/2015/05/webat25-org-screen-capture.png
Keep track of strings or numbers, and tell me whenever they are no longer needed.
Make something we want to keep track of to be self-purging. i.e. keep track of keys, by telling you've used them, if after a time isn't used, fill a list
Based on debounce-with-map.
| node_modules/ | |
| dist/ | |
| package-lock.json |
| # http://editorconfig.org | |
| # Match with prettier.config.js AND .gitattributes | |
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| indent_size = 2 | |
| indent_style = space |
This is originally copy-pasted from bennadel’s Gist and this article, which looks good, but I wanted it to be usable independently from Angular.
Roughly, it'll need setupEventBinding to be broken up where we'd tell we need to bind such and such. We'd probably end up using native directly though.