1.1.4 • Published 9 years ago

htmljs v1.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

htmljs

NPM version Build status Test coverage Dependency Status License Downloads Gittip

Convert an HTML file with inlined JS into a JS file with inlined HTML

Converts a file structured like:

<style></style>
<style></style>
<div id=""></div>
<script>someJavascript();</script>

Into:

var html = '<style></style>\n<style></style>\n<div id=""></div>';
someJavascript();

This is primarily for integrations that require a single JS file instead of an HTML file in an iframe.

1.1.4

9 years ago

1.1.3

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago