@tsdiapi/crypto v0.0.1
crypto Plugin for TSDIAPI
A TSDIAPI plugin to extend API functionality with crypto.
š About
This is a TSDIAPI plugin designed to extend your server functionality. TSDIAPI is a modular framework that allows you to build scalable APIs with dynamic plugin support.
š TSDIAPI CLI: @tsdiapi/cli
š¦ Installation
You can install this plugin using npm:
npm install --save @tsdiapi/crypto
Then, register the plugin in your TSDIAPI project:
import { createApp } from "@tsdiapi/server";
import createPlugin from "@tsdiapi/crypto";
createApp({
plugins: [createPlugin()]
});
š Features
- š Extend TSDIAPI with additional functionalities.
- ā Seamless integration with your existing API.
- š Fully configurable to match your project needs.
š§ Configuration
This plugin can be configured via options when initializing:
createPlugin({
});
Option | Type | Default | Description |
---|
š How to Use
After installation, you can use this plugin as part of your TSDIAPI application. If additional configuration is required, it can be passed as an object when initializing the plugin.
Example Usage:
import { createApp } from "@tsdiapi/server";
import createPlugin from "@tsdiapi/crypto";
const app = createApp({
plugins: [createPlugin({
})]
});
app.start();
š Related Plugins
You can find more TSDIAPI plugins here:
š Available Plugins
šØāš» Contributing
Contributions are always welcome! If you have ideas for improving this plugin, feel free to open a pull request.
Author: unbywyd
GitHub Repository: https://github.com/unbywyd/tsdiapi-crypto
š§ Contact: unbywyd@gmail.com
š Happy coding with TSDIAPI! š
4 months ago