
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
group-items
Advanced tools
group-items is a TypeScript/JavaScript module for grouping arrays by some
key, primitive or complex, and into whatever structure you desire.
Example:
import { group } from 'group-items'
// group names by length
const items = ['James', 'John', 'Robert', 'Michael', 'William', 'David']
const byLength = group(items).by('length').asObject()
console.log(byLength)
{
4: ['John'],
5: ['James', 'David'],
6: ['Robert'],
7: ['Michael', 'William']
}
This module can do a lot more though, as the keying can also be dynamically
generated and there are other collectors in addition to .asObject().
// ESM / TypeScript:
import { group } from 'group-items'
// CommonJS:
const { group } = require('group-items')
The basic workflow is as follows:
group(Iterable).by('property') or .by((item, index) => fn(item, index)).asObject(), .asTuples(), .keys(), etc.Syntax: group(Iterable), where group is the main export of this module.
Because this method takes an Iterable, you can give it arrays, sets, strings,
... and it will just work.
There are two ways of providing a keying:
You've seen an example for (A) in the code snippet above, where the length
property was used to group strings. Examples for (B) can be found at the end
of this document (in the Examples section). Put simply, you would provide a
function that -- when given an element of the input Iterable -- computes
some value that can be used as the key for that element.
Later I will demonstrate the power of this concept.
Note that almost anything can be used as key. Key equality (and thereby grouping) is determined as per the deep-eql module.
After a grouping has been initialized and keyed, it can be collected in one of many ways:
.asArrays()
collects into an array of arrays (each child array is a group).
E.g. if grouping integers by whether they are even or odd, the output might be:
[[0, 2, 4, 6, 8], [1, 3, 5, 7, 9]].
.asEntries(options)
collects into an array of { key: <key>, items: [...] } objects. This is one
of the more verbose collectors, but sometimes useful. The property names can be
customized.
Options:
keyName: name of the key property (default: 'key')itemsName: name of the items property (default: 'items')Note that due to limitations of the TypeScript language, the return type of
this method cannot be inferred correctly when customizing property names. In
those cases, an array of Record will be returned which you have to cast
yourself.
.asMap()
collects into a JavaScript
Map,
as you would expect. Maps have the advantage of supporting non-primitive keys.
.asObject()
collects into a JavaScript Object. You can find an example for this above.
Note that due to the nature of JavaScript objects, only values of type
string, number or symbol will be included in the result.
.asTuples()
collects into an array of 2-tuples, i.e., an array of the following form:
[
[keyA, [itemA_0, itemA_1, itemA_2, /* etc ... */]],
[keyB, [itemB_0, itemB_1, itemB_2, /* etc ... */]],
// etc ...
]
.keys()
collects just the group keys into an array.
You've seen one example already. Here are a few more, demonstrating the capabilities.
group([0, 1, 2, 3, 4, 5])
.by(i => i % 3)
.asObject()
{
0: [0, 3],
1: [1, 4],
2: [2, 5]
}
const events = [
{ date: [2020, 3, 1], title: 'EDC Mexico' },
{ date: [2020, 3, 21], title: 'Ultra Music Festival (ASOT)' },
{ date: [2020, 3, 21], title: 'This Is Me' },
{ date: [2020, 3, 29], title: 'Creamfields' },
//...
]
group(events).by('date').asMap()
Map {
[2020, 3, 1] => [ { date: [2020, 3, 1], title: 'EDC Mexico' } ],
[2020, 3, 21] => [
{ date: [2020, 3, 21], title: 'Ultra Music Festival (ASOT)' },
{ date: [2020, 3, 21], title: 'This Is Me' }
],
[2020, 3, 29] => [ { date: [2020, 3, 29], title: 'Creamfields' } ]
}
Or alternatively:
group(events).by('date').asEntries({ keyName: 'date', itemsName: 'events' })
[
{ date: [2020, 3, 1], events: [ /* ... */ ] },
{ date: [2020, 3, 21], events: [ /* ... */ ] },
{ date: [2020, 3, 29], events: [ /* ... */ ] }
]
This is certainly not the most efficient (or readable) way to do it, but you get the idea.
// initialize some mappings
const map = new Map([
[0, 'foo'], [2, 'foo'], [3, 'bar'], [8, 'foo'], [9, 'qux'], [11, 'bar']
])
// create a reverse map (map each value to its respective keys)
group(map).by(entry => entry[1]).keys()
['foo', 'bar', 'qux']
The following example makes use of the element index for grouping.
group('ax1by2cz3')
// create chunks by alternating every 3rd character
.by((char, index) => index % 3)
.asArrays()
// now join the inner arrays
.map((arr) => arr.join(''))
['abc', 'xyz', '123']
FAQs
Group arrays by complex keys into polymorphic structures
The npm package group-items receives a total of 296 weekly downloads. As such, group-items popularity was classified as not popular.
We found that group-items demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.