Modules
Modules extend the functionality of our framework by adding reusable backend components. They are designed to simplify common tasks and enhance application performance.
Available Modules
Here are some of the core modules available:
Module | Description | Documentation |
---|---|---|
Auth | Handles user authentication and authorization | Read More |
Database | Provides database connectors and ORM integration | Read More |
Cache | Implements caching strategies to improve performance | Read More |
Installation
To install a module, follow these steps:
- Select a module: Identify the module you need from the list above.
- Install the module:
js npm install my-framework-auth
python pip install my-framework-auth
- Import and configure the module:
js import Auth from 'my-framework-auth';
python from my_framework_auth import Auth
- Integrate it into your project by following the module’s documentation.
Best Practices
- Always check for module updates to ensure security and performance improvements.
- Use only the necessary modules to keep your application lightweight.
- Refer to the Libraries page to explore more extensions.
For troubleshooting or additional help, visit our Support page.
Updated on 20 March, 2025