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 🙏

© 2025 – Pkg Stats / Ryan Hefner

hawkeye-linker

v0.0.1

Published

鹰眼客户端连接组件

Readme

taa-linker

taa-client连接器

安装

npm install taa-linker
# 或
yarn add taa-linker
# 或
pnpm add taa-linker

开发

# 安装依赖
pnpm install

# 开发模式
pnpm dev

# 构建
pnpm build

组件

Linker

基于socket.io的服务器连接类,用于发送和接收数据。

实例化

1. 实例化并自动连接到服务器
import { TaaLinker } from 'taa-linker';

const socketIOUrl = 'ws://<host>:<port>';

const taaLinker = new TaaLinker({
    url: socketIOUrl,
    autoConnect: true
});
2. 实例化并按需连接到服务器
import { TaaLinker } from 'taa-linker';

const socketIOUrl = 'ws://<host>:<port>';

const taaLinker = new TaaLinker({
    url: socketIOUrl,
    autoConnect: false,
});

taaLinker.connect();

监听连接状态

taaLinker.onConnectStatusChanged((status: ConnectionStatus) => {
  console.log('[taa-linker] 连接状态已更新: ', status);
});

ConnectionStatus 枚举

| 值 | 描述 | |--------|------| | DISCONNECTED | 未连接 | | CONNECTING | 连接中 | | CONNECTED | 已连接 | | ERROR | 连接错误 |

监听客户端状态

taaLinker.onClientStatusChanged((state: ClientStatus) => {
  console.log('[taa-linker] 客户端状态已更新: ', state);
});

ClientStatus 枚举

| 值 | 描述 | |--------|------| | OFFLINE | 离线 | | IDLE | 空闲 | | OCCUPIED | 占用 |

拨打电话

const res = await TaaLinker.getCallTicket('https://ai-client-test.ciwork.cn', ticketOptions);
const token = res.data;
taaLinker.makeCall(callOptions, token)

调整拨打电话界面呼出位置

taaLinker.makeCall(callOptions, token, {
  placement: TaaClientPlacement.right,
})

客户端显示位置

TaaClientPlacement枚举定义了客户端界面显示的位置:

| 值 | 描述 | |------|------| | left | 左侧显示 | | right | 右侧显示(默认) | | center | 居中显示 | | top | 顶部显示 | | bottom | 底部显示 | | topLeft | 左上角显示 | | topRight | 右上角显示 | | bottomLeft | 左下角显示 | | bottomRight | 右下角显示 |