TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Live-paint (powered by ts-liveview)

5 pointsby aabbcc1241over 3 years ago
live-paint (https:&#x2F;&#x2F;paint.liveviews.cc&#x2F;) is a demonstration of ts-liveview v2-rc3. The server converts JSX expression into plain HTML response. The UI is then updated via websocket.<p>As opposite to React.js. The DOM updates are fired from server, and instructed with query selector (no virtual DOM). Hence, the amount of javascript downloaded and executed by client are minimal (or even optional for static web pages).

2 comments

aabbcc1241over 3 years ago
And it&#x27;s open sourced on <a href="https:&#x2F;&#x2F;github.com&#x2F;beenotung&#x2F;live-paint" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;beenotung&#x2F;live-paint</a>
aabbcc1241over 3 years ago
Beside shipping less javascript to the client side, another benefit to run most logics on the server is cross-browser-update becomes as simple as cross-component-update.