h2oai
nitro
TypeScript

Create apps 10x quicker, without Javascript/HTML/CSS.

Last updated Jun 1, 2026
204
Stars
10
Forks
50
Issues
0
Stars/day
Attention Score
50
Language breakdown
TypeScript 44.7%
CSS 31.7%
Python 13.2%
HTML 9.2%
Go 0.6%
Makefile 0.3%
Files click to expand
README

Nitro

Create apps 10x quicker, without Javascript, HTML, or CSS.

Nitro

Currently a Work in Progress. Follow the development blog or @CrunchingData for updates, or use Discord or Discussions for help / ideas / suggestions.

Get started

Introduction | Guide | Gallery | Plugins | Cheatsheet
  • More:
Roadmap | Milestones | Backlog | Change Log

Philosophy

Recall how simple it is to author interactive command line applications using Python's built-in input() and print():

def main():
    name = input('What is your name?')
    feel = input(f'How do you feel today, {name}?')
    print(f'What a coincidence, {name}, I feel {feel}, too!')
> What is your name?
> Boaty McBoatface
> How do you feel today, Boaty McBoatface?
> intrigued
> What a coincidence, Boaty McBoatface, I feel intrigued, too!

Nitro brings that same level of simplicity to authoring web applications:

from h2o_nitro import View, box

def main(view: View): name = view(box('What is your name?', value='Boaty McBoatface')) feel = view(box(f'How do you feel today, {name}?', value='intrigued')) view(f'What a coincidence, {name}, I feel {feel}, too!')

Hello World app

And here's a more elaborate example with seven pages in seven Python statements:

Recruitment app

🔗 More in this category

© 2026 GitRepoTrend · h2oai/nitro · Updated daily from GitHub