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/action-plugin-common

v0.1.0

Published

Common utilities for aPaaS action plugins

Downloads

6

Readme

@lark-apaas/action-plugin-common

Common utilities for aPaaS action plugin development — provides error types and platform API error handling.

Install

npm install @lark-apaas/action-plugin-common

API

Error Classes

RateLimitError

Thrown when a plugin encounters rate limiting or quota exhaustion. The platform identifies this error by code === 'RATE_LIMIT_EXCEEDED' and passes rateLimitCode / rateLimitMessage to the business layer.

import { RateLimitError } from '@lark-apaas/action-plugin-common';

// Quota exhausted
throw new RateLimitError('quota_exceeded', '本月配额已用完,请下月再试');

// QPS throttling
throw new RateLimitError('qps_limit', '请求过于频繁,请稍后再试');

PlatformApiError

Wraps non-rate-limit platform API errors with plugin/action context.

import { PlatformApiError } from '@lark-apaas/action-plugin-common';

throw new PlatformApiError(
  'API call failed',
  'my-plugin',
  'myAction',
  errorOutput,
);

Error Handling Utilities

handlePlatformError(output, pluginName, actionName)

Inspects a platform API error output and throws the appropriate error:

  • RateLimitError for ResourceExhausted errors
  • PlatformApiError for all others
import { handlePlatformError } from '@lark-apaas/action-plugin-common';

// Streaming
if (chunk.success !== true) {
  handlePlatformError(chunk.chunkOutput, 'ai-text-generate', 'textGenerate');
}

// Unary
if (result.data.success === false) {
  handlePlatformError(result.data.output, 'ai-text-to-image', 'textToImage');
}

extractRateLimitError(output)

Returns a RateLimitError instance if the output is a rate-limit error, otherwise null.

import { extractRateLimitError } from '@lark-apaas/action-plugin-common';

const rateLimitError = extractRateLimitError(chunk.chunkOutput);
if (rateLimitError) {
  throw rateLimitError;
}

isRateLimitError(output)

Checks whether a PlatformErrorOutput object represents a rate-limit error (code === 'ResourceExhausted').

isRateLimitErrorInstance(error)

Checks whether an error is an instance of RateLimitError.

Types

import type {
  CallApiResponse,
  PlatformErrorDetail,
  PlatformErrorOutput,
  SSEMessage,
  StreamCallChunk,
} from '@lark-apaas/action-plugin-common';

| Type | Description | | --- | --- | | CallApiResponse<T> | Response shape for unary platform API calls | | StreamCallChunk | Chunk shape for streaming platform API calls | | SSEMessage | SSE message structure | | PlatformErrorOutput | Platform API error output | | PlatformErrorDetail | Error detail with business code and message |

Constants

  • RATE_LIMIT_ERROR_CODE'ResourceExhausted'

License

MIT