Run TypeScript directly in the browser — no installs, no tooling. Just use a CDN and go.
TypeNova is a lightweight, browser-friendly runtime that lets you write and run TypeScript directly using <script type="text/typescript"> or load .ts files via URL.
It’s powered by a precompiled runtime hosted on GitHub Pages and jsDelivr — no need to install TypeScript or use a bundler.
<script src="https://pjdeveloper896.github.io/TSNova/dist/ts-runtime.min.js"></script><script src="https://cdn.jsdelivr.net/gh/pjdeveloper896/TSNova@latest/dist/ts-runtime.min.js"></script>- 🧠 Write TypeScript directly in HTML
- 🌐 Load
.tsmodules from any URL - ⚡ Instant in-browser compilation with
typescript.js - 🚫 No installs, no npm, no bundlers
- 📦 All-in-one runtime from CDN
<script src="https://pjdeveloper896.github.io/TSNova/dist/ts-runtime.min.js"></script>
<script type="text/typescript">
const greet = (name: string): string => `Hello, ${name}!`;
console.log(greet("TypeNova"));
</script><script src="https://pjdeveloper896.github.io/TSNova/dist/ts-runtime.min.js"></script>
<script>
runTSFromURL("https://example.com/app.ts");
</script>This runtime uses eval() to execute transpiled JavaScript. Do not load or run untrusted .ts files.
© 2025 @pjdeveloper896
---