Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/symbux/turbo
Turbo is a powerful command engine that is fully expandable with plugins, using internal event scheduling, dependency injection, and ORM for creating scalable and powerful REST API / WebSocket based platforms.
https://github.com/symbux/turbo
api command dependency-injection fibre http-server injection rest-api threads typescript websocket websocket-server worker
Last synced: 2 days ago
JSON representation
Turbo is a powerful command engine that is fully expandable with plugins, using internal event scheduling, dependency injection, and ORM for creating scalable and powerful REST API / WebSocket based platforms.
- Host: GitHub
- URL: https://github.com/symbux/turbo
- Owner: Symbux
- License: apache-2.0
- Created: 2021-09-03T23:29:37.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T08:29:47.000Z (about 1 year ago)
- Last Synced: 2024-10-31T13:27:40.665Z (20 days ago)
- Topics: api, command, dependency-injection, fibre, http-server, injection, rest-api, threads, typescript, websocket, websocket-server, worker
- Language: TypeScript
- Homepage:
- Size: 1.15 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Symbux/turbo/workflow.yml?branch=master)
![GitHub issues](https://img.shields.io/github/issues/Symbux/Turbo)
![NPM](https://img.shields.io/npm/l/@symbux/turbo)
![npm (scoped)](https://img.shields.io/npm/v/@symbux/turbo)
![npm](https://img.shields.io/npm/dw/@symbux/turbo)The Turbo engine is a command-based framework for building API (and web) based applications using either built-in plugins or community/custom ones.
> Package is in alpha, use at own risk.
We have created a boilerplate/starter project with a frontend and backend pre-configured and ready to use, including a docker-compose file for a single node clustered MongoDB instance for development, available here: https://github.com/Symbux/Turbo-Starter
---
## Installation
With Yarn:
```bash
yarn add @symbux/turbo
```With NPM:
```bash
npm install --save @symbux/turbo
```
---
## Getting Started
[You can find the documentation here](https://github.com/Symbux/Turbo/wiki).
```typescript
import { Engine, HttpPlugin, WsPlugin } from '@symbux/turbo';// Initialise engine instance.
const engine = new Engine({
autowire: true,
});// Use the http plugin.
engine.use(new HttpPlugin({
port: 8080,
}));engine.use(new WsPlugin());
// Start engine.
engine.start().catch((err) => {
console.error(err);
});
```
---
## Features & Plugins
Turbo comes with tons of great features and core plugins out of the box including Http and WebSocket plugins for running servers for both.
### Features
A list of available features:
| Feature | Description |
|---------|-------------|
| Controllers | Controllers are used to handle requests from a service, with the ability to use the same controller to serve many services. |
| Middleware | Middleware can be applied to controllers for authentication and authorization validation, like managing CORS, or IP blacklisting, alongside checking a token/login status for a user. |
| Autowire | The engine offers built-in autowiring for framework modules, like plugins, controllers, fibres, providers, tasks, and more. |
| Plugins | Plugins are used to extend the engine with new functionality, like adding new services (i.e. Discord bots), or more generic functionality. |
| Tasks | Tasks are used to run tasks based on a cron-style syntax, these can be used to run tasks on a schedule, or to run tasks as needed. |
| Fibres | Fibres are classes, that proxy exposed methods into a thread, allowing them to run in parallel but also freeing up your main thread for running intensive operations. |
| Authentication | Built in authentication decorators can be applied to a controller method to do checks against middleware set authentication data. |
| Registry | The engine provides a registry for storing data, this can be used to store data in memory, alongside the registry stores all modules that have been loaded into the engine. |
| ORM | We have opted for using an existing ORM, specifically we have decided to use Prisma, which has extremely good TypeScript support, the Turbo engine will initialise any prisma schema available, see the [Turbo Starter](https://github.com/Symbux/Turbo-Starter) project for a handy getting started guide.
| Services | Services are classes that provide a service which can call controllers, and methods to run business logic, for example the HttpPlugin comes with a HttpService that sets up and manages an Express application, usually we suggest setting services up as plugins, see the source code `src/plugin/http` as an example. |
| Translations (i18n) | This feature allows you to support the default `Accept-Language` header to support manual and auto-translation of your content. |
### Plugins
| Plugin | Description | Type |
| --- | --- | --- |
| HTTP Plugin | The built-in HTTP plugin is based off of [Express](https://www.npmjs.com/package/express). | `built-in` |
| WS Plugin | The built-in WS plugin is based off of [Express-WS](https://www.npmjs.com/package/express-ws), will initialise an express server if the HttpPlugin is not initialised. | `built-in` |
| Turbo Discord | A discord plugin, that offers SSO (single sign on) to discord with built-in bot support using the new slash commands functionality with various helpers and full controller structure support. | `external` |
| Turbo Vite | A vite plugin for Turbo that supports server-side rendering (SSR) and full support for the Vite dev server including HMR. | `external` |
---
## Future Development
* [Turbo CLI](#) - A command line interface for Turbo, to install plugins, boilerplate plugin projects and automate building and deploying Turbo applications.
* [UiPlugin](#) - A pre-built Vue based SSR framework for writing user interfaces for the framework (allowing other plugins to extend it).
* [AuctionPlugin](#) - A plugin to support auction systems, using commission, timed, and live bidding (Extends UI Plugin).