Read Me
Odi provides feature set for creation of easy supportable and scalable web applications.
Features Overview:
- MVC
- Full-typed DI / IoT
- Authentication
- WebSockets
- TypeORM integration
- GraphQL
- GRPC
- CLI
- AOP
- SSR
import { Controller, IController, Post, Get, Autowired } from "odi";
import { TodoService } from "./todo.service";
import { TodoDTO } from "./todo.dto";
@Controller()
export class TodoController extends IController {
@Autowired()
todoService: TodoService;
@Get index() {
return `Hello, ${this.request.ip}`;
}
@Post async save(toDo: TodoDTO) {
await this.todoService.save(toDo);
}
@Get async '/:id' (id: string) {
const todo = await this.todoService.find(id);
if(!todo)
throw NotFound;
return todo;
}
}
Last modified 4yr ago