Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Build a Rocket Boy confirms more layoffs amid further claims of “organized espionage and corporate sabotage”

    Former Blizzard CCO and Bonfire CEO Rob Pardo to present keynote address at GDC Festival of Gaming

    Turkish mobile developer Vento Games secures $4m in seed round funding

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      Google releases Gemini 3.1 Flash Lite at 1/8th the cost of Pro

      March 4, 2026

      Huawei Watch GT Series

      March 4, 2026

      Weighing up the enterprise risks of neocloud providers

      March 3, 2026

      A stolen Gemini API key turned a $180 bill into $82,000 in two days

      March 3, 2026

      These ultra-budget laptops “include” 1.2TB storage, but most of it is OneDrive trial space

      March 1, 2026
    • Crypto

      Banks Respond to Kraken’s Federal Reserve Access as Trump Sides with Crypto

      March 4, 2026

      Hyperliquid and DEXs Break the Top 10 — Is the CEX Era Ending?

      March 4, 2026

      Consensus Hong Kong 2026: The Institutional Turn 

      March 4, 2026

      New Crypto Mutuum Finance (MUTM) Reports V1 Protocol Progress as Roadmap Enters Phase 3

      March 4, 2026

      Bitcoin Short Sellers Caught Off Guard in New White House Move

      March 4, 2026
    • Technology

      Big tech companies agree to not ruin your electric bill with AI data centers

      March 5, 2026

      Mark Zuckerberg downplays Meta’s own research in New Mexico child safety trial

      March 5, 2026

      Bill Gates-backed TerraPower begins nuclear reactor construction

      March 5, 2026

      Assassin’s Creed Unity is getting a free 60 fps patch tomorrow

      March 5, 2026

      LG reveals pricing for its 2026 OLED TVs

      March 5, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Instant (YC S22) Is Hiring a Founding TypeScript Engineer
    Technology

    Instant (YC S22) Is Hiring a Founding TypeScript Engineer

    TechAiVerseBy TechAiVerseApril 12, 2025No Comments8 Mins Read2 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Instant (YC S22) Is Hiring a Founding TypeScript Engineer
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Instant (YC S22) Is Hiring a Founding TypeScript Engineer

    Instant is a real-time database you can use on the frontend. We give you the best of both Firebase and Supabase, a sync-engine with support for relations. This is the kind of tech that companies like Figma, Notion, and Linear build internally to power their products (Try out the demo)

    We’re looking for a founding Typescript Engineer to join our team of 4 in San Francisco. If you:

    1. Are obsessive about type ergonomics (even with how types show up in intellisense)
    2. Enjoy crafting UIs that people use for hours
    3. Want to build a sync engine to enable the next Figma or Notion

    Then we want to talk to you! So, why those three points? Let us explain:

    1. You are obsessive about type ergonomics

    One of the benefits about using typescript in a library is the developer experience you can offer your users. Types can do so much more than just catch typos. Types are a tool. They give you autocomplete and good feedback; shown in the right moment they can make someone’s day. We don’t just want to build a great database. We want people to enjoy using it.

    Instant is typed. It took some serious type fu, but the upshot is the users get autocomplete and typesafety as a result. And right now types are a first cut. Here’s some of what’s ahead:

    Type where clauses

    Imagine you are building a goodreads alternative. You want to write a query like: Give me profiles that have “Count of Monte Cristo” in their bookshelves. This is how it would look in Instant:

    {
      profiles: {
        $: { where: { "bookshelves.books.title": "Count of Monte Cristo" } },
      }
    };
    

    And with it you’d get those profiles. But bookshelves.books.title is typed too broadly: any string is allowed. This means users could have typos, or forget which relationships exist on profiles.

    Well, we already have access to the schema. We could type the where clause. This way, when a user starts writing “booksh”, we could autocomplete with all the relationships that live on profiles!

    This is tricky (there’s a lot you can do in a query), but it would be a huge benefit to users.

    Improve intellisense

    Or speaking of schemas: this is what you’ll see in Typescript when you hover over one:

    const schema: InstantSchemaDef<EntitiesWithLinks<{
      profiles: EntityDef<{
        name: DataAttrDef<string, true>;
      }, {}, void>;
      bookshelves: EntityDef<{
        title: DataAttrDef<string, true>;
      }, {}, void>;
    }, {
      ...;
    }>, LinksDef<...>, RoomsDef>
    

    Now, complex types can look notoriously daunting in intellisense. Some of the complexity is unavoidable, but there’s a lot that can be done to improve it. For example, is it really necessary that the hover includes EntitiesWithLinks, EntityDef, DataAttrDef?

    Some may think it’s not worth fretting over intellisense output. But you know this differentiates the best libraries. Great types reap great benefits.

    Performance, utility types…

    And the list goes on. We want to add more tests for type outputs (one project we’re considering is to write a library that tests intellisense output). We want to write benchmarks to see how types perform in larger codebases. We want to improve how you define schemas and how you write transactions. We want to add more utility types, so users can build their own libraries on top of Instant.

    2. You enjoy crafting UIs that people use for hours

    Today Instant ships with a CLI tool and a Dashboard.

    Since Instant is a core part of our user’s infra, they end up spending hours every day interacting with it. The onus is on us to make their experience as delightful as possible. UIs make a real difference here. People may not consciously notice it, but every detail adds up. There’s a lot of work to do:

    Migrations in the CLI

    Right now, you can push your schema with the CLI, but we don’t support any destructive actions. You can add a column, but you can’t delete it (You can do this manually). We held off on destructive actions in the CLI, because we wanted to make the right kind of UX: something that feels natural, but doesn’t let you shoot yourself in the foot. Can you help design it and implement it? Maybe it’s time we add migrations, or take inspiration from terraform.

    Better Sandbox

    In the dashboard, we have a sandbox that lets you run queries and transactions:

    You can dry-run transactions, make queries, and see how your permissions work. Users live in this tool for hours. But there’s a lot missing here. For example, could you save snippets, or have a history of the changes you’ve made to your sandbox?

    Better Explorer

    Or take a look at the Explorer. It lets you visually query and change data. This often replaces custom code users would have needed to write for an admin panel. You can already make queries, create rows, link objects, and upload files:

    But this is just the beginning. What else do users use an admin panel for, and how can we just give it to them? We want to make an editing experience on level of Airtable, available to every dev before they even start building their app.

    Rules, Examples…

    And there’s so much more. We want to improve our permissions language, and make it easier to introspect. Our examples page shows a few ways you can use Instant, but what if instead it had hundreds of examples and was searchable? The list goes on!

    3. You want to build a sync engine to enable the next Figma or Notion

    Instant’s client SDK implements a sync engine:

    Inside the SDK there’s a client-side database which can run queries just the like the server does. The client-side DB is what makes it possible for Instant to work offline, and to get optimistic updates out of the box. And it’s full of problems that make computer science textbooks come alive:

    • Better joins: the client runs a nested loop to implement joins. But as we increase how much we cache, nested loops could become a problem. Perhaps it’s time to add hash joins!
    • Better indexes: we use a map of maps for our indexes. This works, but comparison queries will be less efficient then they have to be. Perhaps it’s time to consider writing an OrderedSet
    • Better introspection: we built a state machine to manage how different events interact: websocket updates, connection changes, client / server changes. But it’s quite hairy and hard to reason about. Can we make it easier to observe events and replay them? Perhaps we could look into the actor model or structured concurrency for inspiration.
    • Better local storage: we treat IndexedDB as a key values store and serialize large chunks of state. Can we serialize in smaller chunks instead?
    • Less re-renders: Right now queries can change more than is needed. We want every update to be finer-grained, so users have less re-renders.

    If we do this right, we have the chance to build an abstraction that is both easy — you could build any app quickly with it — but also scales to the complexity of apps like Figma or Notion.

    Aside: the Backend

    The client SDK talks to a backend written in Clojure and Postgres. Sometimes, you may end up in Clojure. We don’t expect you to be a Clojure expert, but if you are excited about hacking on the language too, we’d be thrilled to onboard you.

    About us

    You may be thinking to yourself…that’s a lot of responsibilities. From typescript types, to client side databases, to UIs.

    We hope that excites you in the same way it does us: lots of hard problems are one of the reasons we love working on Instant.

    We’re a team of 4. Three of us are in San Francisco (Daniel, Joe, Stopa), and one of us are in Berlin (Niki). Joe & Stopa (the founders) have known each other for over 10 years, and worked across Facebook and Airbnb together. Daniel (first engineer) and Stopa worked together at Wit.ai and Facebook, and have been friends for 10 years. Niki shipped datascript, and wrote one of the first essays about the kinds of web applications Instant wants to empower.

    We love working together. We aim to work with people who we will be friends with for a lifetime. We love high-integrity, optimistic, and principle-oriented hackers who love what they do. Internally we have a hacker mentality — we build quickly, we are kind to each other, and relentlessly focused on making our users happy.

    Additional Stats

    • Location: We’re based in San Francisco, CA!
    • In-person or open to relocation only: We’re a small team and we really do prefer all working together in person!
    • Compensation: Sliding scale between 0.5%-2% equity and 150k – 200k base + medical/dental/vision benefits

    Apply

    If you’ve read this far and are excited, we should really talk 🙂. Send us an email: founders@instantdb.com with a bit about yourself, and a project you’ve worked on. If you’ve built a Typescript library, that’s a big plus, but not required.

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleWhy Your ‘Harmonious’ Team Is Failing
    Next Article AI can’t stop making up software dependencies and sabotaging everything
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Big tech companies agree to not ruin your electric bill with AI data centers

    March 5, 2026

    Mark Zuckerberg downplays Meta’s own research in New Mexico child safety trial

    March 5, 2026

    Bill Gates-backed TerraPower begins nuclear reactor construction

    March 5, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025705 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025290 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025164 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025124 Views
    Don't Miss
    Gaming March 5, 2026

    Build a Rocket Boy confirms more layoffs amid further claims of “organized espionage and corporate sabotage”

    Build a Rocket Boy confirms more layoffs amid further claims of “organized espionage and corporate…

    Former Blizzard CCO and Bonfire CEO Rob Pardo to present keynote address at GDC Festival of Gaming

    Turkish mobile developer Vento Games secures $4m in seed round funding

    Good Games Group has bought the Humble and Firestoke back catalogues. Now, newly renamed as Balor Games, it wants to invest in triple-I

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Build a Rocket Boy confirms more layoffs amid further claims of “organized espionage and corporate sabotage”

    March 5, 20262 Views

    Former Blizzard CCO and Bonfire CEO Rob Pardo to present keynote address at GDC Festival of Gaming

    March 5, 20262 Views

    Turkish mobile developer Vento Games secures $4m in seed round funding

    March 5, 20262 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    Best TV Antenna of 2025

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.