KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
TSNova
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
leptos-unique-ids
:
Ensure globally unique DOM identifiers across a Leptos app
component-library-ai
:
Experiment Creating a Component Library with AI
void-clone-team-website
:
No description available.
AWS-Cloud-Practitioner-Practice-Questions
:
AWS Cloud Practitioner Practice Questions
Alireza-Foroughi-UK
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
TSNova
?
Download (.md)
# 🌟 TypeNova > Run TypeScript directly in the browser — no installs, no tooling. Just use a CDN and go. --- ## 🚀 What is TypeNova? **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. --- ## 🔗 Use via CDN ### ✅ GitHub Pages CDN ```html <script src="https://pjdeveloper896.github.io/TSNova/dist/ts-runtime.min.js"></script> ```` ### ✅ jsDelivr CDN ```html <script src="https://cdn.jsdelivr.net/gh/pjdeveloper896/TSNova@latest/dist/ts-runtime.min.js"></script> ``` --- ## ✨ Features * 🧠 Write TypeScript directly in HTML * 🌐 Load `.ts` modules from any URL * ⚡ Instant in-browser compilation with `typescript.js` * 🚫 No installs, no npm, no bundlers * 📦 All-in-one runtime from CDN --- ## 💡 Usage Examples ### Inline TypeScript ```html <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> ``` ### Load Remote TypeScript File ```html <script src="https://pjdeveloper896.github.io/TSNova/dist/ts-runtime.min.js"></script> <script> runTSFromURL("https://example.com/app.ts"); </script> ``` --- ## 🛡 Security Warning This runtime uses `eval()` to execute transpiled JavaScript. Do **not** load or run untrusted `.ts` files. --- --- ## 📄 License © 2025 [@pjdeveloper896](https://github.com/pjdeveloper896) ``` ---