Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@maxbuild/common
Advanced tools
Common library in MAXBUILD
npm i @maxbuild/common
set config in tsconfig.json
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
use api
import {identity} from '@maxbuild/common'
// a unique id.
let id = identity.nextId();
// test id.
if (!identity.isValidId(id)) {
}
// id length.
identity.idLength == 32
use decorator
import {Identity} from '@maxbuild/common'
class Demo {
@Identity
id: string;
}
// a unique id.
new Demo().id
import {errorCode, isErrorCode, getErrorCodeMsg} from '@maxbuild/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 '@maxbuild/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 '@maxbuild/common';
auth.headerTenantIdKey // of-tid
auth.headerUserIdKey // of-uid
auth.getTenantId(restObj)
auth.getUserId(restObj)
auth.getFeignData(restObj)
FAQs
Common library in MAXBUILD
The npm package @maxbuild/common receives a total of 0 weekly downloads. As such, @maxbuild/common popularity was classified as not popular.
We found that @maxbuild/common demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
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.