Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinbalicot/tamia
A REST API Server designed with Open API V3
https://github.com/kevinbalicot/tamia
api nodejs openapi3 rest
Last synced: 14 days ago
JSON representation
A REST API Server designed with Open API V3
- Host: GitHub
- URL: https://github.com/kevinbalicot/tamia
- Owner: kevinbalicot
- Created: 2022-08-23T12:16:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T09:47:12.000Z (3 months ago)
- Last Synced: 2025-01-24T21:38:42.603Z (20 days ago)
- Topics: api, nodejs, openapi3, rest
- Language: JavaScript
- Homepage:
- Size: 151 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
![logo](doc/media/logo.png)
# TAMIA
A REST API Server designed with Open API v3
## Installation
```
$ npm install --save @tamia/tamia
```With connect or express js
```js
const tamiaApi = require('@tamia/tamia');// ...
const config = { ... }; // Open API schema, see documentation for more info
const options = { ... }; // Tamia API options
const tamia = tamiaApi(config, options);app.use(tamia.request);
```### Documentation
Summary
- [CONFIGURATION](/doc/CONFIGURATION.md)
- [PLUGINS](/doc/PLUGINS.md)### Tests
```
$ npm test
```