Use decorators and javascript to build web services
English | 简体中文
Introduction
totea is a nodejs framework based on express, using decorators to define routing and middleware. Features overview:
- javascript: Existing frameworks that use decorators all use typescript by default, totea can be used in javascript, only need to introduce plugin-proposal-decorators;
- Simple and efficient: totea provides less than 20 decorator functions, but it can support a variety of complex usage scenarios;
- Easy to integrate: Totea uses express as a web server. We have not modified any underlying logic, which means that the methods and plugins that can be used in express can also be used in totea.
Example
Let's create a simple user service, including the addition, deletion, modification, and checking of users, and then create a secondary route to obtain the tag list of users.
const { Server, Get, Post, Delete, Put, Middleware, Controller,Params } = require('@totea/core')
@Controller('tag')
class tagController {
@Get('/list')
getTag() {}
}
@Server({
port: 4000,
controller: [tagController]
})
@Middleware((req, res, next) => {
next()
})
class Service {
@Get('/user')
getUser() {}
@Get('/user/:id')
@Middleware((req, res, next) => {
next()
})
getUserById({ params }) {}
@Post('/user')
insertUser({ body }) {}
@Delete('/user/:id')
@Params(params => params.id && params.id.length === 10)
deleteUserById({ params }) {}
@Put('/user/:id')
modifyUserById({ params, body }) {}
}
const service = new Service()
service.start()
This is all the code, isn't it simple?
For detailed usage, please check the Document
Installation and use
npm i @totea/core
npm i @babel/core @babel/node @babel/plugin-proposal-decorators
module.exports = {
plugins: [
["@babel/plugin-proposal-decorators", {legacy: true }]
],
};
npx babel-node index.js
License
MIT
Copyright (c) 2021-present aim-leo