keywordsearch

KeyWordSearch

This is a simple web application that allows users to input keywords for searching and displays results matching the keywords.

How to Use

  1. Enter keywords in the search box.
  2. The application will display results matching the keywords.

Application entry: https://jeffreymaomao.github.io/keywordsearch/dist

Technology Stack

Database Structure

The data structure is stored in a NoSQL (Non-SQL) database management system. Here’s the structure:

{
    "<element id>": {
        "p": "<parent id>",
        "n": "<name>",
        "k": ["<key1>", "<key2>", ...],
        "t": "<time>",
        ...
    },
    "<element id>": {
        "p": "<parent id>",
        "n": "<name>",
        "k": ["<key1>", "<key2>", ...],
        "t": "<time>",
        ...
    },
    ...
}

Developer

Contributions and suggestions are welcome!