Nonprofit News Model: The Salt Lake Tribune Goes Free
The Salt Lake Tribune removed its paywall and became a nonprofit. Here's what the move means for the future of local journalism and why HN is talking.
A legacy newspaper removing its paywall and operating as a nonprofit is rare. The Salt Lake Tribune just did both, and the Hacker News community took notice. It's a real-world test of a funding model many have debated but few have executed at scale.
What's the story?
On May 12, 2026, the Salt Lake Tribune published an opinion piece by its editor and publisher announcing that all news content is now free to read. No paywall, no registration. The move follows the paper's 2019 transition to a nonprofit organization. The piece argues that free news increases the public good reach of journalism, and that the nonprofit structure liberates the newsroom from advertiser and shareholder pressures. The Tribune plans to sustain itself through donations from readers and foundations, similar to public radio and TV.
Why it's blowing up on HN
The thread has only 11 comments but they hit core tensions. One commenter captured the funding dilemma:
The 'Free News' model is something I've struggled to solve. How can you provide impartial, objective reporting when you can't afford salaries? If people aren't interested in paying... what else can you do?
Another pointed out the structural shift:
Making newsrooms beholden to donors is not ideal, but it's better than being beholden to advertisers.
A third noted the deeper significance:
The change to corporate structure is more significant than removing the paywall. If they can attract a broad enough donor base of civic associations, they'll be insulated from the vicissitudes of quasi-ad 'underwriting.'
The sentiment is cautious optimism. No one thinks this is a panacea, but there's agreement the experiment is worth watching.
My take
I've watched the nonprofit news space for years. Most experiments are digital-only startups (like The Texas Tribune or VTDigger). A legacy print newspaper converting is a different beast — it carries fixed costs, union contracts, and a brand expecting daily print delivery. The Tribune's bet is that a nonprofit structure combined with a large enough donor base can sustain real reporting without a paywall.
The key phrase: "not owned by any person or company." That's rare. Most newspapers are owned by chains, publicly traded or by wealthy individuals. Nonprofit status creates a legal commitment to public good that even a mission-driven for-profit doesn't have. But it introduces a new dependency: donors. As the HN comments point out, donor influence can be as distorting as advertiser influence if the base is narrow. The Tribune seems to aim for broad community support — hundreds of small donors rather than a few big ones.
I think this model can work, but only if the paper does two things: invest aggressively in audience development to expand its donor base beyond existing subscribers, and maintain transparent governance so editorial independence is practiced, not just promised. The Nieman Lab has covered similar transitions, with mixed track records. The Guardian's reader-funded model works at global scale, but local papers lack that reach. The Tribune is a real test for the middle.
What this means for builders
If you're building anything that relies on content revenue — a newsletter, a blog, a journalism startup — this story is directly relevant. The paywall vs. ad-supported vs. donor-funded debate is central. Here's what the Tribune's move suggests:
- Paywalls work for some, not all. The Tribune decided the value of broad reach outweighed subscription revenue. If your content has a small but deeply engaged audience, a paywall might make sense. If you want maximum civic impact, free may be better.
- Nonprofit status is a branding tool. It signals you're not maximizing profit. That can attract donors, but also comes with regulatory requirements. Consider a fiscal sponsorship or a 501(c)(3) if you go this route.
- Diversify funding from day one. The Tribune survived four years as a nonprofit before going fully free. If you start a project, don't rely on a single revenue stream. Build multiple: donations, grants, events, maybe a membership program.
- Transparency about funding matters. Readers want to know who pays for your work. The Tribune's opinion piece itself is an example. Posting your donor list or funding sources builds trust.
If you code, think about how your platform can support such models. You might build a paywall easy to toggle on/off for different sections, or a donation system as seamless as a subscription. Here's a minimal Stripe donation button:
<form action="/donate" method="POST">
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_test_..."
data-amount="1000"
data-name="Donate"
data-description="Support our nonprofit"
data-currency="usd">
</script>
</form>
This is trivial, but the real complexity is integrating it with a CRM and maintaining donor relationships.
The takeaway
The Salt Lake Tribune's experiment is worth watching. For builders and readers alike, the shift from market-driven to mission-driven journalism could be the future of local news. This model isn't a panacea, but it's a high-profile case study in a struggling industry. Pay attention to the funding structure more than the paywall removal. The real story is the structural change.
Read the original Tribune article View the HN discussion More on nonprofit journalism from Wikipedia The Guardian's reader-funded model