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

@lark-apaas/client-toolkit

v1.2.60

Published

## 项目架构设计

Readme

@lark-apaas/client-toolkit

项目架构设计

apis 目录

  • 导出所有对外暴露的 API 和组件,并通过 npm exports 来控制
  • 其他目录作为 internal 实现,不对外暴露

auth 目录

  • 包含与权限相关的 API 和组件

开发组件 - 使用 CanRole 组件 (推荐)

import { CanRole } from '@lark-apaas/client-toolkit/auth';

function Home() {
  return (
    <div>
      <CanRole roles={['role_admin']}>
        <div>管理员按钮</div>
      </CanRole>
      <CanRole roles={['role_admin', 'role_editor']}>
        <div>编辑按钮</div>
      </CanRole>
    </div>
  );
}

开发组件 - 使用 AbilityContext 处理复杂场景

import { useContext } from 'react';
import { AbilityContext, ROLE_SUBJECT } from '@lark-apaas/client-toolkit/auth';

function Home() {
  const ability = useContext(AbilityContext);
  return (
    <div>
      {ability.can('role_admin', ROLE_SUBJECT) || ability.can('role_editor', ROLE_SUBJECT) ? (
        <div>可见的仪表盘</div>
      ) : null}
    </div>
  );
}

开发组件 - 进阶示例

菜单按权限过滤

import { useContext } from 'react';
import { AbilityContext, ROLE_SUBJECT } from '@lark-apaas/client-toolkit/auth';

const menus = [
  { name: 'Dashboard', path: '/dashboard', p: { action: 'role_admin', subject: ROLE_SUBJECT } },
  { name: 'Users', path: '/users', p: { action: 'role_editor', subject: ROLE_SUBJECT } },
  { name: 'Settings', path: '/settings', p: { action: 'role_admin', subject: ROLE_SUBJECT } },
];

function Nav() {
  const ability = useContext(AbilityContext);
  return (
    <nav>
      {menus.map(m => ability.can(m.p.action, m.p.subject) && (
        <a key={m.path} href={m.path}>{m.name}</a>
      ))}
    </nav>
  );
}