
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.
hangul-search-js
Advanced tools
It allows you to search for simple Korean characters in the most consistent order regardless of the character assembly order.
npm i hangul-search-js
import { createSearch } from 'hangul-search-js'
const search = createSearch([
'롯데시네마',
'유튜브',
'프로게이머',
'가난',
'난가'
])
const result = search('시ㄴ')
// result: ['롯데시네마', '프로게이머', '가난', '난가']
const resultExact = search('시ㄴ', { exact: true })
// result: ['롯데시네마']
const resultExact = search('난가', { exact: true, order: true })
// result: ['난가']
<script src="https://cdn.jsdelivr.net/npm/hangul-search-js/export/hangul-search.js"></script>
var createSearch = window.hangulSearch
var search = createSearch([
'롯데시네마',
'유튜브',
'프로게이머',
'가난',
'난가'
])
var result = search('시ㄴ')
// result: ['롯데시네마', '프로게이머', '가난', '난가']
var resultExact = search('시ㄴ', { exact: true })
// result: ['롯데시네마']
var resultExact = search('난가', { exact: true, order: true })
// result: ['난가']
MIT Licensed.
FAQs
Simple Korean text search module
We found that hangul-search-js 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.