<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kisho</title>
    <description>The latest articles on DEV Community by Kisho (@kisho_).</description>
    <link>https://dev.to/kisho_</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3942842%2Fd8cb2ba3-d638-45fa-941b-108d557330cd.jpg</url>
      <title>DEV Community: Kisho</title>
      <link>https://dev.to/kisho_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kisho_"/>
    <language>en</language>
    <item>
      <title>Why I built a baby tracker after a week of trying every other one</title>
      <dc:creator>Kisho</dc:creator>
      <pubDate>Wed, 20 May 2026 20:31:57 +0000</pubDate>
      <link>https://dev.to/kisho_/why-i-built-a-baby-tracker-after-a-week-of-trying-every-other-one-1mpl</link>
      <guid>https://dev.to/kisho_/why-i-built-a-baby-tracker-after-a-week-of-trying-every-other-one-1mpl</guid>
      <description>&lt;p&gt;The honest origin story isn't "I saw a gap in the market." It's that my twins were born a few weeks early, premature babies need closer feeding tracking than full-term ones, and after a week of trying every baby tracker on the App Store, my partner and I went back to a paper notebook.&lt;/p&gt;

&lt;p&gt;The notebook was terrible. I lost it. The handwriting at 4am was unreadable. One of the babies peed on it. But the cognitive load of using it was still lower than any of the apps we'd tried — apps that wanted us to finish a 7-step onboarding before logging a single feed, or open three nested dropdowns to record a wet diaper.&lt;/p&gt;

&lt;p&gt;So I built &lt;a href="https://poopeemilk.com/" rel="noopener noreferrer"&gt;PooPeeMilk&lt;/a&gt;. One rule: logging an event takes one tap and zero thought. iOS now, Android next. This post is the technical write-up — what's in the stack, why each piece is there, and what I'd change.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it actually does
&lt;/h2&gt;

&lt;p&gt;Logs the four things new parents care about — feeds (breast or formula, with volume), diapers (wet or dirty), weights, and milestones with photos. From those logs it generates a 24-hour "rhythm ribbon" pattern view and a pediatrician-ready PDF for appointments.&lt;/p&gt;

&lt;p&gt;Core logging is free. Multi-baby support, shared caregivers, milestone photos, and PDF export sit behind a subscription.&lt;/p&gt;

&lt;h2&gt;
  
  
  The stack
&lt;/h2&gt;

&lt;p&gt;Three packages in one workspace:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Mobile&lt;/strong&gt;: Expo + React Native (new architecture enabled)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend&lt;/strong&gt;: Next.js App Router on Railway&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database&lt;/strong&gt;: Postgres via Prisma&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Photo storage&lt;/strong&gt;: Cloudflare R2&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Marketing site&lt;/strong&gt;: separate Next.js app, also on Railway&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auth&lt;/strong&gt;: passwordless email codes (Resend + JWT)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Payments&lt;/strong&gt;: RevenueCat&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Translations&lt;/strong&gt;: GPT-4o-mini at build time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The interesting bits aren't the choices themselves — most of them are unsurprising for a 2025 indie stack — but &lt;em&gt;why&lt;/em&gt; each one over the obvious alternative.&lt;/p&gt;

&lt;h2&gt;
  
  
  Expo vs bare React Native
&lt;/h2&gt;

&lt;p&gt;I spent about a day debating this and then realised it wasn't actually a debate. I'm one person. EAS Build, Expo Modules (image manipulation, file system, sharing, localisation, push), and OTA updates are not things I want to wire up by hand. The new architecture closes the perf gap for an app of this complexity.&lt;/p&gt;

&lt;p&gt;The free tier alone — 15 builds/month and OTA updates to 1,000 MAUs — comfortably covers where I am, and the upgrade path is fine once usage grows.&lt;/p&gt;

&lt;h2&gt;
  
  
  Passwordless email codes for auth
&lt;/h2&gt;

&lt;p&gt;I considered the usual menu: Apple/Google sign-in, magic links, passwords. The audience decided it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sleep-deprived parents on a single device will not remember a password&lt;/li&gt;
&lt;li&gt;Caregiver invites (partner, grandparent) need to work straight from an email&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The flow is standard. Client POSTs an email; backend stores a hashed code with a TTL and ships it via Resend; client confirms the code; backend returns a JWT used as a bearer token from then on. Middleware verifies it on every request. Rate-limited, obviously.&lt;/p&gt;

&lt;p&gt;Magic links would also have worked, but on mobile they involve universal links and the occasional "open in browser" failure mode. Six-digit codes just work everywhere.&lt;/p&gt;

&lt;h2&gt;
  
  
  Photo uploads: presigned R2 URLs
&lt;/h2&gt;

&lt;p&gt;Naive version: POST image bytes to the backend, backend proxies to object storage. That burns server memory, adds latency, and makes you pay egress twice. So the client requests a presigned URL, uploads directly to R2, then tells the backend "the photo is at this key."&lt;/p&gt;

&lt;p&gt;R2 over S3 specifically because &lt;strong&gt;egress is free&lt;/strong&gt;. Parents will eventually want to pull their photos back out for a memory book — paying outbound bandwidth on every export would have been painful.&lt;/p&gt;

&lt;h2&gt;
  
  
  RevenueCat over rolling my own
&lt;/h2&gt;

&lt;p&gt;Two SDKs (StoreKit, Play Billing), two webhook formats, two sets of edge cases (refunds, family sharing, grace periods, billing retries, restore flows) — the cost of doing it yourself is high and the failure modes are silent until a user emails you saying "I paid and the app doesn't think so."&lt;/p&gt;

&lt;p&gt;RevenueCat is also genuinely indie-friendly on pricing — free until you cross a monthly tracked revenue threshold. As a solo dev who hasn't validated the market, "free until you have revenue" is the whole pitch.&lt;/p&gt;

&lt;h2&gt;
  
  
  Railway for hosting
&lt;/h2&gt;

&lt;p&gt;Backend, marketing site, and Postgres all live there. I've used Heroku for years and did a stretch on Vercel + a separate managed Postgres. Railway is the first host where the app, the database, the env vars, the logs, and the deploys feel like one product instead of four services you've duct-taped together. For a solo project where every context-switch costs, that integration is worth more than any individual feature.&lt;/p&gt;

&lt;h2&gt;
  
  
  Things I'd change
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Write tests sooner.&lt;/strong&gt; Not more tests. Not 100% coverage. Just &lt;em&gt;sooner&lt;/em&gt;. Moving fast as a solo dev means the regressions you ship are in the code paths you weren't thinking about that week. Four or five end-to-end tests on the critical flows — sign in, log an event, see it appear, hit the paywall — would have caught at least three TestFlight bugs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Think harder about the data shape before the schema.&lt;/strong&gt; My &lt;code&gt;Event&lt;/code&gt; table is union-shaped — feeds, wet diapers, and dirty diapers all live in one table with optional columns. Fine for the write path, awkward for stats queries. A polymorphic schema would have been cleaner, but I'd only have known that after writing the stats queries. Maybe the lesson is: write the hardest read query first, then design the table.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;Android is the big one. iOS-only right now because that's what my partner and I had, and shipping to one platform end-to-end is faster than trying to do two at once. But Android is the bigger global share — especially in the regions where the marketing site is getting traffic — and because it's Expo, the lift is small.&lt;/p&gt;

&lt;p&gt;If you're building in the parenting space (or just curious about the code decisions), the app is on the &lt;a href="https://apps.apple.com/us/app/poopeemilk-baby-tracker/id6762670408" rel="noopener noreferrer"&gt;App Store&lt;/a&gt;. Happy to nerd out about any of this in the comments.&lt;/p&gt;

</description>
      <category>ios</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>ux</category>
    </item>
  </channel>
</rss>
