Skip to content

liteonly/bolt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bolt


What is Bolt?

It is a simple elasticsearch type search engine


endpoint to add document to index
POST /index
{
"id": "1",
"title": "sample doc",
"data": "Hello! My name is Bolt."
}

endpoint for searching the index
GET /search?q=name%20bolt
[
    {
        "id" : "1",
        "title" : "sample doc",
        "data" : "Hello there. My name is Bolt."
    }
]

Running

npm install
node app.js

Releases

No releases published

Packages

No packages published