├── README.md └── compileJs.html /README.md: -------------------------------------------------------------------------------- 1 | # compileJS 2 | Compile HTML, JS, and CSS file apps into a single HTML file from the browser, with no dependencies 3 | 4 | 1) Open compileJs.html in a modern browser 5 | 2) Make sure your project has a single .html file or a single index.html file 6 | 3) Load your project, starting from the outermost directory, into compileJS 7 | 4) Press download to create your single, compiled .html file 8 | 5) Verify that all of the javascript and css files were replaced as expected via the results tables 9 | 10 | -------------------------------------------------------------------------------- /compileJs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 13 | 14 | 15 |
16 |
17 |

HTML/JS/CSS Compiler

18 |

Upload a directory containing your HTML, JS, and CSS files to compile them into a single HTML file.

19 |
20 | 21 |
22 | 25 | 26 |
27 | 28 |
29 |
30 | 31 | 496 | --------------------------------------------------------------------------------