npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hyperion13th144m/tsgroonga

v0.1.18

Published

client library for Groonga

Readme

tsgroonga

Nodejs package for groonga written in typescript.

support only select command and its several options.

Requirements

  • nodejs v22.15
  • typescript v5.5
  • groonga v15

Installation

init typescript project and install pacakges

$ yarn init
$ yarn add -D typescript
$ yarn add @hyperion13th144m/tsgroonga
$ yarn tsc --init

invoke Groonga server, create Tables and load data.

$ groonga -d PATH_TO_DB
$ cat data.grn
table_create --name Test --flags TABLE_HASH_KEY --key_type ShortText
  column_create --table Test --name property1 --type Int32
  column_create --table Test --name property2 --type ShortText
  column_create --table Test --name property3 --type Int32 --flags COLUMN_VECTOR

load --table Test [
  { "_key": "Key1", "property1": 10,  "property2": "hoge", "property3": [ 0, 1, 2 ] },
  { "_key": "Key2", "property1": 20,  "property2": "fuga", "property3": [ 10, 11, 12 ] },
  { "_key": "Key3", "property1": 100, "property2": "piyo", "property3": [ 20, 21, 22 ] },
  { "_key": "Key6", "property1": 20,  "property2": "fuga", "property3": [ 10, 11, 12, 13 ] },
  { "_key": "Key7", "property1": 30,  "property2": "fuga", "property3": [ 20, 21, 22 ] },
  { "_key": "Key8", "property1": 40,  "property2": "fuga", "property3": [ 30, 31, 32 ] },
  { "_key": "Key9", "property1": 50,  "property2": "fuga", "property3": [ 40, 41, 42 ] },
  { "_key": "Key10", "property1": 100,  "property2": "hoge", "property3": [ 100, 101, 102 ] },
  { "_key": "Key11", "property1": 110,  "property2": "hoge", "property3": [ 100, 101, 102 ] },
  { "_key": "Key13", "property1": 200, "property2": "piyo", "property3": [ 320, 231, 322 ] },
  { "_key": "Key20", "property1": 150,  "property2": "pon", "property3": [ 1800, 1701, 1402 ] },
  { "_key": "Key21", "property1": 3150,  "property2": "pon", "property3": [ 9800, 1121, 8242 ] },
]
$ groonga --file data.grn PATH_TO_DB

Usage

Client creation

create client for connecting to Groonga server. the client supports only http.

import { Groonga } from '@hyperion13th144m/tsgroonga';

// first argument is hostname of Groonga server, second argument is its port.
const groonga = new Groonga('groonga', 10041);

Table creation

groongaTable function creates table schema. this function DO NOT CREATE actual table to Groonga server. the schema is used for select command.

import {
    groongaTable, key, text, numeric, nsubrecs, bool
} from '@hyperion13th144m/tsgroonga';

// 'Test' is table name of Groonga Server
const test = groongaTable('Test', {
    // the schema must have one column created by key().
    // if key of Groonga table is ShortText, call text() after key().
    key: key().text(),

    // column objects corresponding to columns of Groonga table.
    // 'property1' in numeric() arguments is column name of Groonga table.
    // 'Int32' in numeric arguments is column type of Groonga table.
    prop1: numeric('property1', 'Int32'),

    // default column type of text() is ShortText
    prop2: text('property2'),

    // if column type is vector, call vector()
    prop3: numeric('property3').vector(),

    // pseudo column for _nsubrecs. you need this property for drilldownSortKeys()
    recs: nsubrecs(),
});

Query setup

you can build query with using groonga object and helper functions, Query, Filter, asc and desc. typescript will detect wrong column name with quotes.

import { Query as Q, Filter as F, asc, desc } from '@hyperion13th144m/tsgroonga';
// call select command with schema 'test'
const q = groonga.select(test)
    .limit(10) // same option of select command of Groonga
    .offset(0)
    .outputColumns(['key', 'prop1', 'prop2', 'prop3'])
    .filter(F.or([
        F.match(test.prop2, F.keyword('hoge')),
        F.match(test.prop2, F.keyword('fuga')),
    ]))
    .sortKeys([
        asc('prop1'), desc('prop2'), asc('prop3'),
    ])
    .drilldown(['prop1', 'prop2'])
    .drilldownSortKeys([desc('recs'), desc('key')]);

Query and Results

(A) query and print parameters

// print parameters sent to Groonga for debug
console.log(q.params);

// actually send select command to Groonga
const res = await q.commit();

(A) output

{
  table: 'Test',
  limit: 10,
  offset: 0,
  output_columns: '_key,property1,property2,property3',
  filter: 'property2 @ "hoge" || property2 @ "fuga"',
  sort_keys: 'property1,-property2,property3',
  drilldown: 'property1,property2',
  drilldown_sort_keys: '-_nsubrecs,-_key'
}

(B) query results

// this type is used for annotation to the result json from Groonga
type Test = typeof test.inferModel;

// the results from Groonga are typed as Test[]
const records: Test[] = res.records;

// dump all records.
// as the records are typed, development tools(e.g. vscode) can show you
// proper properties of 'v', such as prop1 and so on.
records.forEach((v) => {
    console.log(v.key, v.prop1, v.prop2, v.prop3);
});

(B) output

Key1 10 hoge [ 0, 1, 2 ]
Key6 20 fuga [ 10, 11, 12, 13 ]
Key2 20 fuga [ 10, 11, 12 ]
Key7 30 fuga [ 20, 21, 22 ]
Key8 40 fuga [ 30, 31, 32 ]
Key9 50 fuga [ 40, 41, 42 ]
Key10 100 hoge [ 100, 101, 102 ]
Key11 110 hoge [ 100, 101, 102 ]

(C) get drilldwon

// get drilldown.
// the type parameters of getDrilldown must be same to drilldown method of SelectCommand.
const drilldown = q.getDrilldown<'prop1' | 'prop2'>()

// the tool can also show you proper properties of 'drilldown'.
drilldown.prop1.forEach((v) => {
    console.log(v.value, v.count);
});
console.log('====================');
drilldown.prop2.forEach((v) => {
    console.log(v.value, v.count);
});

(C) output

20 2
110 1
100 1
50 1
40 1
30 1
10 1
====================
fuga 5
hoge 3

License

Copyright (C) hyperion13th144m LIcensed under the MIT license