An easy way to "Google" your "Map" using search terms.
Moogle works in Node, Deno, and in the browser. Follow the appropriate quickstart guide below to get started quickly. We have quickstart guides for:
- Node - JavaScript
- Node - TypeScript
- Deno - JavaScript
- Deno - TypeScript
- Browser
-
Initialize your project as a Node project.
$ npm init -y
Note:
-y
skips all of the prompts. -
Install Moogle.
$ npm install @drashland/moogle
-
Create your
app.js
file.const { Moogle } = require("@drashland/moogle"); const service = new Moogle(); service.addItem(["hello"], "world"); console.log(service.search("hel"));
-
Run your
app.js
file.$ node app.js
You should see the following output:
Map(1) { 0 => { id: 0, item: 'world', searchTerm: 'hello', searchInput: 'hel' } }
-
Initialize your project as a Node project.
$ npm init -y
Note:
-y
skips all of the prompts. -
Install Moogle, TypeScript, and
ts-node
.$ npm install @drashland/moogle $ npm install typescript $ npm install --global ts-node
-
Create your
app.ts
file.import { Moogle } from "@drashland/moogle"; const serviceWithoutTypes = new Moogle(); // Or use the following syntax to specify a type (in this case, it's a string) // const serviceWithTypes = new Moogle<string>(); serviceWithoutTypes.addItem(["hello"], "world"); console.log(serviceWithoutTypes.search("hel"));
-
Run your
app.ts
file.$ ts-node app.ts
You should see the following output:
Map(1) { 0 => { id: 0, item: 'world', searchTerm: 'hello', searchInput: 'hel' } }
-
Create your
app.js
file.import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js"; const service = new Moogle(); service.addItem(["hello"], "world"); console.log(service.search("hel"));
-
Run your
app.js
file.$ deno run app.js
You should see the following output:
Map(1) { 0 => { id: 0, item: 'world', searchTerm: 'hello', searchInput: 'hel' } }
-
Create your
app.ts
file.import { Moogle } from "https://deno.land/x/moogle@v1.0.0/mod.ts"; const serviceWithoutTypes = new Moogle(); // Or use the following syntax to specify a type (in this case, it's a string) // const serviceWithTypes = new Moogle<string>(); serviceWithoutTypes.addItem(["hello"], "world"); console.log(serviceWithoutTypes.search("hel"));
-
Run your
app.ts
file.$ deno run app.ts
You should see the following output:
Map(1) { 0 => { id: 0, item: 'world', searchTerm: 'hello', searchInput: 'hel' } }
-
Create your
index.html
file.<!doctype html> <html> <head> <title>Moogle</title> </head> <body> <p>Open up your console to see Moogle working.</p> <script type="module"> import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js"; const service = new Moogle(); service.addItem(["hello"], "world"); console.log(service.search("hel")); </script> </body> </html>
-
Open your
index.html
file so that it opens up in your browser and open up the console to see Moogle working.
In this tutorial, you will create a search form where you can type in search inputs into a search field and see the results in a results field.
-
Create your
index.html
file with the search and results fields. Note: This file uses Tailwind CSS to make the UI look better.<!doctype html> <html class="w-full h-full"> <head> <title>Moogle</title> <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"> </head> <body class="p-10 w-full h-full"> <h1 class="mb-5 text-2xl">Moogle</h1> <div class="mb-10 w-full"> <p class="mb-2">Search</p> <input class="search border-solid border-2 mb-2 w-full p-2" type="text" placeholder="Search for something" > <p class="italic">Try the following searches: one, two, red, blue, fish, sh, ish, ue, ed</p> </div> <div class="w-full"> <p class="mb-2">Results</p> <textarea class="results font-mono text-xs border-solid border-2 p-2 w-full" rows="15" >[]</textarea> </div> </body> </html>
-
Add the following script before the closing
</body>
tag.<script type="module"> import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js"; // Set up Moogle and add some items you can search for const service = new Moogle(); service.addItem(["one fish", "one", "fish"], "ONE_FISH"); service.addItem(["two fish", "two", "fish"], "TWO_FISH"); service.addItem(["red fish", "red", "fish"], "RED_FISH"); service.addItem(["blue fish", "blue", "fish"], "BLUE_FISH"); // Set up event handlers for the DOM const searchElement = document.querySelector(".search"); searchElement.addEventListener("keyup", search); /** * Search for an item in Moogle's lookup table. */ function search() { let results = []; const searchInput = searchElement.value.trim(); if (searchInput == "") { return setResults(results); } const resultsFromService = service.search(searchInput); resultsFromService.forEach((item) => { results.push(item); }); setResults(results); } /** * Set the given results in the results textarea DOM element. */ function setResults(results) { const resultsElement = document.querySelector(".results"); resultsElement.value = JSON.stringify(results, null, 4); } </script>
This script will set up Moogle, add items to Moogle's lookup table so that you can search for them, and set up event handlers in the DOM so that the search field and results field work as expected.
-
Open up the
index.html
to load it in your browser. -
Enter some search terms in the search field element and see the results you get in the results element.
Everyone likes Array
, but they come with a problem. If you want to find an
item in an array and you don't know the index of that item, then you have to
iterate over the entire array to find the item. This is slow.
To make the process faster, you can use Map
. You can quickly find an item in a
Map
if you know the key to the item. However, if you only know a bit of the
key, then the process of finding that item is just like the array -- you have to
iterate over the entire map to find your item.
So... introducing Moogle! Moogle takes Maps
to another level -- making them
searchable and blazing fast!
When you instantiate the Moogle
class, it sets up an index, a lookup table,
and a cache table. From there, you add items to your index and lookup table
using addItem()
. On initial lookups, Moogle will search the lookup table. On
subsequent lookups (using the same search terms), Moogle will use the cache
table -- making subsequent searches faster. The index is where Moogle stores
associations between search terms and items in the lookup table.
When you add items via addItem()
, you are providing the function with two
arguments: (1) an array of search terms and (2) the item associated with the
search terms. This makes it so that you can search for the item using the search
terms (or parts of the search terms if you do not know the full search terms).
Let us say you have instantiated Moogle via const m = new Moogle()
. If you
call m.addItem(["hello", "world"], "world");
, Moogle will take the array of
search terms and assign them an ID in the index like so:
// This is what the index looks like as of now
["hello", [0]]
["world", [0]]
After that, Moogle will take the ID it used for the search terms and assign it to the item like so:
// This is what the lookup table looks like as of now
[0, "world"]
These associations mean you can search for the following strings ...
h
he
hel
hell
hello
w
wo
wor
worl
world
... and they will all match ["hello", [0]]
or ["world", [0]]
in the index.
The assigned ID comes into play when the actual search in Moogle happens. Say
you have searched for hel
. Moogle will match hel
to ["hello", [0]]
in the
index. It will then take the ID associated with the search term and match it to
an item in the lookup table using lookupTable.get(0)
. In this case, the
.get()
call will be matched to [0, "world"]
in the lookup table. So what you
get back is a search result in the following schema:
Map {
0 => {
id: 0,
item: "world",
searchInput: "hel",
searchTerm: "hello"
}
}
In short, Moogle takes the search term, uses the ID associated with that search
term in a .get()
call on the lookup table, and returns the item associated
with the ID -- all without having to iterate through the entire lookup table in
case it has millions of items. This is why Moogle is quick.
Again, each search is cached, so subsequent searches of the same search terms are faster than the first search.