JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19
  • Score
    100M100P100Q65830F

Renku

Package Exports

  • renku
  • renku/auth
  • renku/bun
  • renku/client
  • renku/cloudflare
  • renku/cloudflare/worker
  • renku/data
  • renku/dom
  • renku/jsx-dev-runtime
  • renku/jsx-runtime
  • renku/server
  • renku/server-functions
  • renku/ui
  • renku/vite

Readme

Renku

Getting started

bun create github.com/renkudev/template-bun
bun create github.com/renkudev/template-vite

CSS Classes

Renku uses the class prop to apply CSS classes to its components (as opposed to className in React). Using className will still work though. The prop accespts either a string or an array of strings.

<ul>
  <li><a href="/about" class={["link", "active"]}>About</a></li>
  <li><a href="/contact" class="link">Contact</a></li>
</ul>