Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

byted-apaas-utils

mxy_c103ISC0.0.46TypeScript support: included

飞书应用引擎相关工具

feishu, bytedance, apaas, AE

readme

飞书应用引擎工具函数

see docs https://mxyhi.github.io/byted-apaas-utils/

example

const { createModelServiceClass } = require("byted-apaas-utils");

class SystemUserService extends createModelServiceClass("_user") {}

const systemUserService = new SystemUserService();

systemUserService.find(...);
  • or
const { createModelService } = require("byted-apaas-utils");

const systemUserService = createModelService("_user");

systemUserService.find(...);