I'm developing an app in Angular.
I have some text books, which I store in a JSON format. Each section of the book is composed of an object inside the JSON array, like this:
{
"Chapter": "Intro",
"Id": "1",
"Section_Body":"blah blah"
"Section_Title": "Something"
},
Each book is stored in a different JSON file.
I am trying to implement a full text search on these books, where a user could search for a word or a few words and find the results in the books (not just find if the exact text is included there).
What is the best and easiest way to do this?