1.1.4 • Published 10 years ago

htmljs v1.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
10 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

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago