Hey HN,<p>My name is Alex and I founded Interval [0]. We let you build complete internal tools with just backend code. Today we’re excited to launch our 1.0 release.<p>We built Interval for engineers who love writing code but hate building UIs. Because you build tools with Interval using just backend code (TypeScript/Node or Python), you can focus on what you love – writing the code that makes your tools work – while Interval takes care of the UI, network communication, validation, etc.<p>Back in June, we shared an early preview of Interval on HN [1] and while our core approach hasn’t changed, we’ve learned a lot and expanded what Interval can do significantly.<p>A single line of Interval code can now (for example) render a table, prompt a user to verify their identity w/ 2FA, or ask them to upload a file.<p>Here’s an example of a line of Interval code that you might see in the wild:
`const profilePicture = await io.input.file(‘Upload a new profile picture for the user’)`<p>When that line is reached inside of an Interval action, as your code awaits:<p>- A file upload dropzone component is rendered to the person using your tool<p>- The work of transferring the selected file over the network is handled for you<p>…and when `profilePicture` is returned, you have a soundly-typed object with everything you need including the file name, size in bytes, and its contents as a Buffer.<p>It’s a subtle unlock, but because all of the code you’re writing is backend code, it becomes much quicker to build tools with Interval vs. anything else we’ve seen before. You can do things like query your database on one line and then pass the results into a table for the user to view on the next.<p>And if you integrate Interval into your existing backend, you can take advantage of everything in your preferred stack. For example, we use Prisma as the ORM in our main app and reuse the same instance in our internal tools with no additional work.<p>All of this means you can build a lot with Interval with remarkably little effort. Over the past few months, it’s been common for us to see teams spin up complete admin dashboards or customer support tools in hours instead of days or weeks.<p>To give you a better idea of what Interval is capable of, we’ve pulled together some more examples on our site. [2] My favorite one so far is a _complete_ tool to ask questions about any Postgres database in plain English, implemented with Interval, the pg Node library, and OpenAI in <80 lines of code.<p>So that’s Interval. I’m excited to hear what you think + answer any questions. And if you want to start building, our SDKs are available now for JavaScript/TypeScript and Python.<p>[0] <a href="https://interval.com" rel="nofollow">https://interval.com</a><p>[1] <a href="https://news.ycombinator.com/item?id=31656496" rel="nofollow">https://news.ycombinator.com/item?id=31656496</a><p>[2] <a href="https://interval.com/#examples" rel="nofollow">https://interval.com/#examples</a>