frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Show HN: I built library management app for those who outgrew spreadsheets

https://www.librari.io/
40•hmkoyan•4h ago
I've been working on librari.io for the past several months and just launched the beta version.

The Problem: I have 500+ books across multiple rooms in my house and was desperately looking for an app to manage them properly. Most library management apps are either too basic or designed for institutional libraries with rigid workflows that don't fit personal use.

What I Built:

- Multiple libraries: manage collections in different locations

- Location tracking - remember exactly which shelf each book is on

- Loan management - track books you've lent to friends

- Custom fields & tags - store any additional book info the way YOU think about them

- Reading progress tracking - dates, duration, personal ratings

- Modern UI/UX - clean & actually enjoyable to use

Current Status:

- Beta version live

- Working on improving the responsiveness of the app and addressing initial user feedback

Would love feedback! Especially curious about:

- What features would make YOU actually use a library management app?

- UI/UX feedback always welcome

- Any book collectors here who'd be interested in beta testing?

Looking forward to your thoughts! Thank you in advance.

Comments

rorylaitila•3h ago
I'm in an adjacent area, cataloging my huge collection of periodicals for my vintage ad collection (adretro.com). The biggest thing that helped me that I didn't see you mention but maybe I missed it: taking book cover photos to populate the inventory. OpenAI vision can easily extract the book, author and meta data. This speeds up the data entry considerably. I scan a whole box of periodicals and upload a zip of all the images. My software extracts the info. So for yours, if I just take photos of all the books on a shelf, it could handle the rest.
hmkoyan•2h ago
Thank you for your comment. Currently, there are three methods of adding a book: searching (which uses the Google Books API under the hood), manual addition (which nobody wants to do — I completely understand — but is the only option for old books that cannot be found online; I have a lot of these) and scanning the ISBN (which also uses the Google Books API). I initially thought about adding the method you suggested, where you provide a picture and then extract the information, but I decided it was not the right time to implement that. So, I left it for later, when there is any need or feedback regarding it from users. From your comment, I understand that it's something that users might actually consider using.
rorylaitila•1h ago
Yeah if there is an ISBN listed, that will be fastest. But for older books that don't have an ISBN, if there is a title on the cover or spine, OpenAI is really good at extracting that, regardless of the font or image quality. It's like a super OCR. From the title and author you can probably stub in the rest of the data, and the user can correct it if necessary.
f_allwein•3h ago
Hack I learned recently: take pictures of all your bookshelves. Then you can search the text on the spines (author, title) in your photo app.
PokemonNoGo•2h ago
Someone told me this last summer and life changed.
orkj•2h ago
This sounds like a great idea for a feature for the OP. Cool feature to kickstart the database. Take a photo. Something something AI. 150 rows filled in
DerArzt•3h ago
This looks like it's a website without an app, so a few questions for you:

1. How does the site perform on mobile? If it doesn't that's a non starter for a large audience segment.

2. What's the pricing? There are several free options out there for managing your book collection, so unless there's a fremium tier (which there's no concrete language about pricing on the pricing page around subscription cost or subscription tiers) less people will want to try this out.

3. Why should someone use a web based library management tool over one that's hosted locally (either as a phone app, or as a site local to your network)?

4. What problems does this solve that others have missed? I would love for that to be front and center on the landing page.

hmkoyan•2h ago
Thank you for your questions. The actual app can be used/seen only after signing in. Regarding your questions:

1. This was initially planned as a web-based application, and it still is. However, when it comes to mobile responsiveness, it's not great — something I've pointed out and am currently working on. I'll finish this work during the weekend. Creating native apps will probably make sense in future, too.

2. Yeah, as it's only the beta version at the moment, the pricing doesn't mention anything specific. I believe there will be three different pricing tiers. There will definitely be a freemium version with some limitations, e.g. a limit of one library and 100–200 books in library, and access to basic statistics only. I need to think more about the pricing in more detail, as I've only concentrated on building the product so far. However, in general, I imagine it to be as I've already described above.

3. This is a very good question, to be honest, and one that I haven't thought much about either. I would probably use a locally hosted application if it offered all the features that librari.io offers. However, I can think of some reasons why a user might want to use a web-based solution. Firstly, I assume that syncing across devices would be difficult when the application is hosted on only one device, unless it offers export/import functionality. Backup and reliability are other reasons why a user would opt for a web-based solution. I believe that the ability to share your library with other people or family members using a link, which gives them access from anywhere at any time, is a good reason to opt for a web-based solution.

4. I can outline the three most significant issues I encountered, which eventually led to the development of this app. The first is the outdated UI that most of them suggest (but of course, I'm not saying that librari.io's UI is the best). The second is the lack of library statistics and analytics (e.g. distribution tables of books, authors, etc. or content-wise and reading activity related statistics). The third is the lack of customisation. For example, the ability to add custom book, author and publisher data fields with different types, such as text, date and number, and then attach actual information to those fields when editing those entities.

unavoidable•3h ago
The problem with library apps isn't really the app. It's trivially easy to spin up a database with all the necessary fields. The real problem with library apps (or systems) is having to actually manage/index/code/scan the books, which is a pain.
mavhc•3h ago
Most books are in x39.50 catalogs, I have koha at home, using the British Library, Library of Congress, National Libraries of Scotland and France, and Oxford, it finds 90% of my books, barcode scan a shelf, import, add missing books
gxs•2h ago
Yeah exactly, what would be awesome is an app that lets you take a picture of your book shelf and captures every book title (and author if possible)

And then after that step it could maybe build a small library with a nice, compact ui automatically

globular-toast•2h ago
I got a barcode scanner and wrote a script to look them up in Open Library. Most of my books are found, but I don't have much weird/old stuff without barcodes. I found the process of scanning quite enjoyable tbh.
bl4kers•3h ago
Let me save to a local database to manage my own data & backups.
pixelmonkey•2h ago
I use https://libib.com for this use case. I didn't see it mentioned here, so figured I'd share.

I'll also mention a fun coding project that I used ChatGPT on. I created a data enriched spreadsheet out of my physical books. This could then be used to bulk import into libib for a searchable and visual digital bookshelf.

First I took photos of my bookshelves such that the spines were visible. Then I had ChatGPT vision model transcribe visible titles and authors, and guess the books based on that. Then I turned that into a CSV. Finally I had ChatGPT generate a Python script that used the Google Books API to enrich the spreadsheet with ISBNs. Finally I bulk uploaded that CSV with ISBNs to libib, and voila, I had a digitized library.

Just in case this gives you any ideas!

hmkoyan•2h ago
Thank you for your comment. Libib is indeed a well-established player in this industry. Although it suggests a lot of different functionalities/features, it lacks detailed statistics/analytics regarding users' reading activity, libraries and content. It also doesn't allow you to create your own data fields for storing information about books, authors or publishers. Regarding data extraction from photos, I considered this method initially, but then decided to leave it until there is specific feedback regarding this. Apparently, people would actually use it, as another user also pointed this out in a comment.
pixelmonkey•2h ago
Glad the comment was helpful. Cool project. From one book lover to another, best of luck!
f0e4c2f7•2h ago
This looks cool and I wish you luck but I'd probably never use something closed source for this.

Been on the lookout for an open source version but they all seem kind of unessecarily bulky or otherwise poorly maintained.

Would be interested in suggestions anyone has for whole apps or libs that work well when glued together for this purpose.

mythmon_•2h ago
My biggest complaint with library management tools, and I think this applies to Librari as well, is the lack of multi-user support. I have a lot of books in my "home library", spread out over a few rooms. But I'm not the only person interacting with this library. Their are books on the shelves that "belong" to other people in the house, and we all joint manage the books. Sharing logins can work, but misses out on so many things that we would like to have.

My dream tool for this would allow multiple people to be "members" of a library, and be able to belong to multiple members themselves. They could collectively manage things like metadata, like what books are on the shelves, but could have individual things like ratings or tracking what they've read.

Plex is actually a really good example of this. I hope some day to find a tracker like that for my books.

hmkoyan•2h ago
Thank you for your comment and for explaining your problem in such detail. Currently, you can mark your library as public and share the link with others, but they can only see the books in it. What you're saying actually makes total sense, and I will add this feature to my backlog.
jkhalaj•2h ago
The paid version of libib.com allows you to do this. Each manager can be assigned overlapping collections to edit, but also have the ability to track status, rate and review individually.
jrussino•1h ago
I just want a simple/quick/easy way to scan all of the books in my house and print spine labels like the ones they use in a library.

Dewey decimal or Library of Congress or whatever. We just have too many books (mainly children's books) and I want an easy low-thought/low-friction way to identify exactly where each book should be put away.

Would this help with my problem? Is there already a solution for this?

> Most library management apps are either too basic or designed for institutional libraries with rigid workflows that don't fit personal use.

That what I concluded after a cursory search of this space as well.

DANmode•1h ago
Off-Topic: I thought this was a web-dev dependencies-tracker kind of thing, and was preparing to rage-out.
bhattisatish•1h ago
I have more than 500 books too. I have tried using multiple platforms and I end up leaving them because they become a social platform or more than a simple book management. I don't have issues with that, but it's about how much time I want to spend on interacting with people. For e.g. my wife used to be very active in Librarything and Goodreads, but during covid and post covid, she has completely stopped using these platforms. So depending upon peoples needs the platform can become useful or time leeches. And it will depend upon what they need from it at that given moment.

Now, I have an excel sheet with all the books I have, and I don't see any way to import that list into the platform. I don't see myself sitting and rescanning or manually entering that list. For maintaining the library, i.e. whenever we buy books at that moment scanning or manual entry makes sense. But during onboarding I need an excel or csv import provision.

Currently we are using [My Library](https://play.google.com/store/apps/details?id=com.vgm.mylibr...), an android app. I am ready to move out of it as then the whole family can operate it.

Features I will like:

- Easy on boarding of a large collection

- Auto categorization. I don't want to sit manually and tag it or set the genre

- Multiple people be able to add and update a collection (Family mode)

- Borrow/Loaned status

- Books read but not owned

- Sharing the collection with closed group (friends and family)

- Sharing the collection with a larger community (if someone in the family is interested, but only in their profile and not all family members)

- Book recommendations (things that fall in my interest are fine, but also that surprise me). I miss the days when the book store owner used to remember us and used to recommend something which otherwise I wouldn't have picked up.

- And obviously able to export my data. I have been burned by enough platforms in the past 15 years that, this is necessary!

bhattisatish•1h ago
And I understand some features are already built by you, but as I was not able to play with the app (since I can't import any books), I have listed the ones that are important for me
nja•1h ago
This looks great! My favorite projects posted on HN are the ones that come out of folks scratching their own personal itches.

Like you, I have a bunch of books on various bookshelves in the house. I also have a number of collapsing cardboard boxes in my basement filled with books from my parents'/grandparents' houses. At some point, I really need to sort through all of these and figure out a) what even is there b) what do I keep to put on shelves and c) is there anything worth selling to a shop or giving to the library vs tossing? Complicating this is that many of these books are ancient, and even newer ones aren't necessarily in pristine condition.

I have an old CueCat lying around I was going to use to scan barcodes on books new enough to have them... that'll be tedious enough, but going through the rest manually is going to be a giant project (which is part of why they're still there in my basement).

I don't see it on the site from a cursory review (apologies if I missed it): do you support importing from ISBNs (such as scanned by a CueCat)? I'd also be quite interested in the machine vision aspect others have mentioned here (though since they aren't on a bookshelf, it would likely be individual photos of each book as they are pulled out of the box)...

Tying into that, I'm curious what the workflow for inputting books will be like, both for my boxes-o-books case, and for the general bookcase import case. I could 100% see myself using this if it was a nice straightforward brainless process I could bang out in an afternoon while watching a show, but if it's more of a manually-search-and-input process, I'm definitely going to lose patience before I finish them all :)

Tacking onto what others have said about automated labeling, that would be extremely useful too---especially for the books in poor condition, but even for the nicer ones, just so that I could get a handle on them all. I have a Bluetooth label printer that could be fantastic here...

I'll follow this project with interest for sure!

egonschiele•49m ago
This is awesome. Exactly the sort of thing I like to see on HN: someone going deep on a niche they really care about. The app is more polished than I expected.

The design is nice and clean. I really appreciate dark mode as well, though some of the text on this page, for example https://app.librari.io/subscription looks like it needs to be tweaked for dark mode.

I would genuinely use this, as I don't always like the public aspect of Goodreads, but it would depend on your pricing structure and privacy policy.

Feature request: bulk import of books.

Nuxt Joins Vercel

https://vercel.com/blog/nuxtlabs-joins-vercel
1•rattray•4m ago•1 comments

The Kap Programming Language

https://kapdemo.dhsdevelopments.com/examples.html
2•thunderbong•10m ago•0 comments

A Software for One

https://www.jasonthorsness.com/30
2•jasonthorsness•10m ago•0 comments

Women Are Falling Behind in America's Return to the Office

https://www.wsj.com/lifestyle/careers/return-to-office-gender-gap-236392aa
3•bdev12345•11m ago•0 comments

Astronomer launches internal investigation after viral Coldplay video

https://www.cnn.com/2025/07/18/entertainment/coldplay-concert-kiss-cam-astronomer-investigation
2•bb88•11m ago•0 comments

Build your CV on Subreply as a LinkedIn alternative

https://subreply.com/lm
4•lcnmrn•15m ago•0 comments

Curse Not the King

https://daringfireball.net/2025/07/curse_not_the_king_cbs_colbert_trump
1•Bogdanp•16m ago•0 comments

The Physics of Dissonance (MinutePhysics) [video]

https://www.youtube.com/watch?v=tCsl6ZcY9ag
1•jerf•20m ago•0 comments

Billionaire Gabe Newell: pitching VCs makes no business sense

https://www.pcgamer.com/gaming-industry/multi-billionaire-gabe-newell-says-the-whole-startup-culture-of-pitching-vcs-for-capital-makes-no-business-sense-a-great-way-of-destroying-money-and-wasting-peoples-time/
6•e2e4•21m ago•0 comments

Ccusage: A CLI tool for analyzing Claude Code usage from local JSONL files

https://github.com/ryoppippi/ccusage
8•kristianp•22m ago•2 comments

Fuzzing macOS Userland (For Fun and Pain)

https://marqcodes.com/fuzzyingforfun.html
1•N3Xxus_6•23m ago•0 comments

Free Online Minesweeper

https://www.freeonlineminesweeper.com
1•avonmach•23m ago•0 comments

DHH – I Hate TypeScript (3 min video)

https://www.youtube.com/watch?v=tyjUH5TLSTM
3•rmason•29m ago•0 comments

Show HN: Interactive Bash tutorial that runs in the browser

https://sandbox.bio/tutorials/bash-script
2•raboukhalil•32m ago•0 comments

Show HN: Castream – Native iOS/Android IRL multistreaming app

1•acabralto•32m ago•0 comments

There Is No Antimemetics Division – A Novel (2025)

https://www.penguinrandomhouse.com/books/783041/there-is-no-antimemetics-division-by-qntm/
2•Duanemclemore•36m ago•1 comments

First earthquake, then fire: UC San Diego researchers test steel building

https://www.kpbs.org/news/science-technology/2025/07/17/first-earthquake-then-fire-uc-san-diego-researchers-test-steel-building
2•littlexsparkee•38m ago•1 comments

Ask HN: What are your favorite open source AI agent implementations?

2•kanodiaashu•38m ago•0 comments

Node.js 18 is being deprecated

https://vercel.com/changelog/node-js-18-is-being-deprecated
1•ananddtyagi•43m ago•0 comments

EPA says it will eliminate its scientific reseach arm

https://www.nytimes.com/2025/07/18/climate/epa-firings-scientific-research.html
33•anigbrowl•44m ago•4 comments

Vibe coding? AI assisted coding? I prefer being an AI micromanager [video]

https://www.youtube.com/watch?v=3gnfOnhC1EA
5•godot•49m ago•0 comments

"Pitch in " Anti-Litter PSA (1973) [video]

https://www.youtube.com/watch?v=Sba0GzhZ088
1•petethomas•53m ago•0 comments

Agents Built from Alloys

https://xbow.com/blog/alloy-agents/
2•azhenley•54m ago•0 comments

US EPA cutting workforce by 23%, closing research division

https://www.reuters.com/legal/government/us-epa-cutting-workforce-by-23-closing-research-division-2025-07-18/
15•pseudolus•58m ago•1 comments

I'm Rebelling Against the Algorithm

https://varunraghu.com/im-rebelling-against-the-algorithm/
3•Varun08•59m ago•0 comments

My worst tech purchase became my best DIY desk lamp

https://medium.com/@philwornath/when-2-useless-items-unite-repurpose-your-monitor-lamp-bar-ikeahackers-upcycling-02e6ad595e1b
1•philjw•1h ago•1 comments

Show HN: Vizr – Ask questions about your marketing data, get real answers

https://vizr.app/
1•arifliftos•1h ago•0 comments

With One Call, Trump Alters the Fate of a Contested Power Project

https://www.nytimes.com/2025/07/17/climate/hawley-grain-belt-express-invenergy-trump.html
4•zekrioca•1h ago•2 comments

Is Translation the Killer App?

https://substack.com/home/post/p-168658235
1•mathattack•1h ago•0 comments

California wood pellet plants canceled amid market decline and public pushback

https://news.mongabay.com/short-article/california-wood-pellet-plants-canceled-amid-market-decline-public-pushback/
3•PaulHoule•1h ago•0 comments