Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@bpfaas/common
Advanced tools
Common library
npm i @bpfaas/common
set config in tsconfig.json
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
use api
import {identity} from '@bpfaas/common'
// a unique id.
let id = identity.nextId();
// test id.
if (!identity.isValidId(id)) {
}
// id length.
identity.idLength == 32
use decorator
import {Identity} from '@bpfaas/common'
class Demo {
@Identity
id: string;
}
// a unique id.
new Demo().id
import {errorCode, isErrorCode, getErrorCodeMsg} from '@bpfaas/common';
// get the errCode
errorCode.OK // 200
errorCode.OK_SYNC // 202
errorCode.PARAMETER_ERROR // 400
errorCode.UNAUTHORIZE // 401
errorCode.NOT_FOUND // 404
errorCode.OPERATOR_EXPIRED // 408
errorCode.OPERATOR_ERROR // 417
errorCode.APPCALL_LIMITED // 444
errorCode.OPERATOR_LIMITED // 445
errorCode.SERVICE_ERROR // 500
errorCode.SERVICE_UNAVAILABLE // 504
isErrorCode(200) == true
getErrorCodeMsg(errorCode.OPERATOR_EXPIRED) // 'OPERATOR_EXPIRED'
Network message package.
import {Msg, errorCode} from '@bpfaas/common';
let msg:Msg = {
err_code: errorCode.OK,
err_msg: 'error message',
err_subcode: 'bll error code',
data: {
...
}
}
Get response user auth info.
import {auth} from '@bpfaas/common';
auth.headerTenantIdKey // of-tid
auth.headerUserIdKey // of-uid
auth.getTenantId(restObj)
auth.getUserId(restObj)
auth.getFeignData(restObj)
FAQs
bpfaas Common library
The npm package @bpfaas/common receives a total of 1 weekly downloads. As such, @bpfaas/common popularity was classified as not popular.
We found that @bpfaas/common demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.