文件名称:reflet:Node的Well修饰器
文件大小:289KB
文件格式:ZIP
更新时间:2024-02-24 07:16:52
nodejs express node typescript mongoose
Reflet :dizzy: Reflet是由类型良好的组成的一组模块,用于增强Node.js和已建立的库。 Reflet简单,灵活。 它将帮助您组织应用程序,而不会产生冗长的陷阱。 但最重要的是,Reflet是法语中的反思人物(发音ruh flay :chicken: )。 整理您的应用程序。 前往之前先。 @ Use ( isAuthenticated ) @ Router ( '/things' ) class ThingController { @ Get ( '/:id' ) async get ( @ Params ( 'id' ) id : string , @ Res res : Response ) { const thing = await db . collection ( 'things' ) . find ( { id } ) res . status ( 200 ) . send ( thing ) } @ Send ( { status : 201 } ) @ UseGuards ( ( req ) => can