Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

@atcute/bluesky-search-parser

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atcute/bluesky-search-parser

parse Bluesky's search syntax

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

@atcute/bluesky-search-parser

tokenizer for Bluesky's search query syntax.

npm install @atcute/bluesky-search-parser

useful for building search UIs that need to parse and manipulate search queries, such as highlighting operators or extracting filter values.

import { tokenize, type Token } from '@atcute/bluesky-search-parser';

const tokens: Token[] = tokenize(`from:me hello "foo bar"`);
// [
//   { type: 'word', value: 'from:me' },
//   { type: 'whitespace', value: ' ' },
//   { type: 'word', value: 'hello' },
//   { type: 'whitespace', value: ' ' },
//   { type: 'quoted', value: '"foo bar"' },
// ]

FAQs

Package last updated on 12 Feb 2026

Did you know?

Socket

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.

Install

Related posts