Skip to content

Kita Html

The fastest server side JSX runtime

Just like your usual template engine, but just better!

Doug, Kita's turtle mascot, with glasses looking at a computer screen
tsx
// this is true
typeof (<div>hello</div>) === 'string';

// Simply write JSX and write it to a file
fs.writeFileSync(
  'index.html',
  <p>
    Hello, <strong>world</strong>!
  </p>
);

Released under the MIT License