Tool guides
Yes — Tentaco studios are free with no account required.
Most modes run entirely in your browser. Server-backed features (file share, DNS lookup) are clearly marked with privacy badges.
7 modes in one workspace — switch instantly from the sidebar without leaving the page.
Many studios work offline after the first visit thanks to the Tentaco PWA. Install the app for the best offline experience.
Loading…
Loading…
Download or copy the full HTML document.
ZIP with index.html, styles.css, script.js, assets/, and README-DEPLOY.md
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
</style>
</head>
<body>
<script>
(function() {
function sendError(msg) {
parent.postMessage({ type: "html-studio-preview-error", message: String(msg) }, "*");
}
window.onerror = function(msg) { sendError(msg); };
window.addEventListener("unhandledrejection", function(e) {
sendError(e.reason);
});
["log", "warn", "error"].forEach(function(level) {
var orig = console[level];
console[level] = function() {
var msg = Array.prototype.slice.call(arguments).map(function(a) {
try { return typeof a === "object" ? JSON.stringify(a) : String(a); }
catch (e) { return String(a); }
}).join(" ");
parent.postMessage({ type: "html-studio-console", level: level, message: msg }, "*");
orig.apply(console, arguments);
};
});
})();
</script>
<script>
</script>
</body>
</html>