Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
koatty_cli
Advanced tools
Koatty command line tool.
koatty new projectName
cd ./projectName
yarn install // or npm i
npm start
koatty controller test
koatty service test
koatty middleware test
//default use thinkorm
koatty model test
//use typeorm
koatty model -o typeorm test
定义切面类:
koatty aspect test
使用切面:
@Controller()
@BeforeEach("TestAspect") //类的每一个方法执行之前执行
export class TestController extends BaseController {
app: App;
@RequestMapping("/test", RequestMethod.ALL)
@After("TestAspect") //test方法执行之前执行
async test() {
const info = await this.testService.test();
return this.body(info);
}
}
定义数据验证类:
koatty dto test
修改数据验证类:
export class TestDTO {
@IsNotEmpty()
name: string;
@Min(0)
@Max(120)
age: number;
}
使用实体类进行验证:
@Controller()
export class TestController extends BaseController {
app: App;
@RequestMapping("/test", RequestMethod.ALL)
@Validated() // <== 开启验证
async test(@Get() param: TestDTO) { // <== 指定DTO
const info = await this.testService.test();
return this.body(info);
}
}
koatty new projectName -t middleware
cd ./projectName
yarn install // or npm i
npm start
koatty new projectName -t plugin
cd ./projectName
yarn install // or npm i
npm start
FAQs
Koatty command line tool.
The npm package koatty_cli receives a total of 24 weekly downloads. As such, koatty_cli popularity was classified as not popular.
We found that koatty_cli demonstrated a healthy version release cadence and project activity because the last version was released less than 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.