An open API service indexing awesome lists of open source software.

https://github.com/francescou/search.js

Javascript search engine
https://github.com/francescou/search.js

Last synced: about 1 month ago
JSON representation

Javascript search engine

Awesome Lists containing this project

README

        

Search.js
=========

Javascript search engine

depends on jQuery and javascript Porter Stemmer

```js

$(document).ready(function () {
$("#query").searchjs({
content: {
"doc1": "one uno un en ein",
"doc2": "due two dos deux",
"doc3": "tre, trois, three tres"
}
});
});

```