A SystemJS (and StealJS) extension for loading literate JavaScript files, written as Markdown. This allows you to write your code as documentation first, while still having the advantage of being able to load dynamically.
bower install system-litjs --save-dev
You can now import any markdown file and it's JavaScript source will be converted into a module.
import foo from 'bar.md!litjs';
foo()
MIT