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

@meaoiu/language-server

v0.1.7

Published

喵谕 (Meaoiu) 语言服务器,提供代码诊断、自动补全等编辑器支持喵~

Readme

喵谕语言服务器

这是一个用于 喵谕 Meaoiu 的语言服务器喵~

安装使用

npm install -g meaoiu @meaoiu/language-server

装好后用 meaoiu-lsp --通信方式 在客户端连接或连接客户端喵~
通信方式例:--stdio--node-ipc 在客户端连接 LSP,--socket=233 让 LSP 连接一个端口在 233 的客户端~

[!IMPORTANT] 一定要同时安装 @meaoiu/language-servermeaoiu 喵~

[!NOTE] 如果不用「no -> de」而用「no <- de」运行,上面的咒语不行,看下面喵~

Deno 会迷路,换个方法,用下面简单几句话就能搞掂喵~

#!/usr/bin/env -S deno --allow-env --allow-net
import 'npm:meaoiu'
import 'npm:@meaoiu/language-server'

把它保存到文件,就可以用 文件路径 --通信方式deno run 文件路径 --通信方式 启动喵~(自己给权限喵)
例:文件名为 meaoiu-lsp.ts,可以在同目录执行 ./meaoiu-lsp.ts --socket=233~

使用示例

这是一个简单的 VSCode 扩展客户端标准输入输出连接示例喵~

import { LanguageClient, type LanguageClientOptions, type ServerOptions, TransportKind } from 'vscode-languageclient/node';

let client: LanguageClient | undefined;

export function activate(): Thenable<void> {
	const serverOptions: ServerOptions = {
		command: 'meaoiu-lsp',
		args: ['--stdio'],
		options: { shell: true },
		transport: TransportKind.stdio,
	};
	const clientOptions: LanguageClientOptions = { documentSelector: [{ scheme: 'file', language: 'meaoiu' }] };

	client = new LanguageClient('meaoiuLsp', 'Meaoiu Language Server', serverOptions, clientOptions);
	return client.start();
}

export function deactivate(): Thenable<void> | undefined {
	return client?.stop();
}