I am looking for a javascript lib that lives on top of localstorage that supports like queries.
This in itself would be easy to write, but I wouldn’t want to reinvent the wheel.
What localstorage libs do people use?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want an SQL interface in JavaScript, use the Web SQL Database API. I think most browsers support this.
If you want an object database interface, use Lawnchair. This doesn’t have a
likequery, but you could store an object that has an index and use that to query.