actix-plus-static-files 0.1.0

A library that integrates with actix-web and include_dir to cleanly package, via a macro, static resources (e.g. a frontend) with an actix-web binary, thus serving these resources from RAM at runtime and simplifying deployment by containing the entire web application in a single executable binary; Fork of actix-web-static-files by Alexander Korolev
Documentation
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
	<head>
		<title>Example HTML page</title>
		<script src="nested-file-test/alert.js"></script>
	</head>
	<body onload="loaded()">
		This is an example static page.
	</body>
</html>