# deployd/deployd

**Attribution required: if you use, quote, or summarise this content, you must credit and link back to [awesome-repositories.com](https://awesome-repositories.com/repository/deployd-deployd).**

4,942 stars · 655 forks · JavaScript

## Links

- GitHub: https://github.com/deployd/deployd
- Homepage: http://www.deployd.com
- awesome-repositories: https://awesome-repositories.com/repository/deployd-deployd.md

## Description

deployd is a realtime API framework and MongoDB backend as a service that allows for the creation of networked interfaces synchronizing data and events between clients and servers. It functions as a JavaScript API middleware that can be integrated with HTTP servers to provide authentication, request interceptors, and realtime capabilities.

The project features a self-hosted API management dashboard for configuring resource settings, managing data collections, and monitoring server status through a web-based interface. It includes a realtime data synchronization engine that pushes live database updates to connected clients using sockets.

The system covers backend data management with schema validation and recursive querying, as well as user authentication workflows that track sessions across stateless requests and persistent connections. It also provides capabilities for realtime event broadcasting, custom API middleware extension via modules, and administrative access control.

The project includes a CLI to bootstrap new projects and run development servers.

## Tags

### Data & Databases

- [Realtime Document Database Servers](https://awesome-repositories.com/f/data-databases/optimistic-update-management/realtime-synchronization/realtime-document-database-servers.md) — Runs a server that persists and synchronizes document data across connected clients via a realtime API. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/server.html))
- [Connection Establishment](https://awesome-repositories.com/f/data-databases/connection-establishment.md) — Establishes authenticated connections to MongoDB instances using connection strings or host configurations. ([source](http://docs.deployd.com/docs/server/as-a-node-module.html))
- [CRUD Operations](https://awesome-repositories.com/f/data-databases/crud-operations.md) — Provides a standardized interface for creating, reading, updating, and deleting data objects. ([source](http://docs.deployd.com/api))
- [Database APIs](https://awesome-repositories.com/f/data-databases/data-access-querying/database-apis.md) — Creates secure programmatic interfaces that allow browser and mobile applications to interact directly with database records. ([source](https://cdn.jsdelivr.net/gh/deployd/deployd@main/README.md))
- [Data Collection Schemas](https://awesome-repositories.com/f/data-databases/data-collection-schemas.md) — Maps structured database objects to programmable API endpoints with built-in property validation and CRUD operations.
- [Data Querying](https://awesome-repositories.com/f/data-databases/data-querying.md) — Provides interfaces for filtering and retrieving data from collections using query strings or JSON operators. ([source](http://docs.deployd.com/docs/collections/reference/querying-collections.html))
- [Data Resource Management](https://awesome-repositories.com/f/data-databases/data-resource-management.md) — Manages data collections through resources that provide request validation and execute event-driven scripts. ([source](http://docs.deployd.com/))
- [Data Schema Management](https://awesome-repositories.com/f/data-databases/data-schema-management.md) — Allows specifying required property types for stored objects to ensure data consistency and validate input. ([source](http://docs.deployd.com/docs/collections))
- [Database and Collection Management](https://awesome-repositories.com/f/data-databases/database-and-collection-management.md) — Enables the creation and management of database collections with built-in CRUD operations and schema validation.
- [Database Connection Configurations](https://awesome-repositories.com/f/data-databases/database-connection-configurations.md) — Provides settings for defining database connectivity parameters and network port configurations. ([source](http://docs.deployd.com/docs/server))
- [Database-to-HTTP Wrappers](https://awesome-repositories.com/f/data-databases/database-to-http-wrappers.md) — Maps database object operations to simplified HTTP wrappers for easier data access and management. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/store.html))
- [Realtime Synchronizations](https://awesome-repositories.com/f/data-databases/json-document-storage/realtime-synchronizations.md) — Ships a realtime data synchronization engine that pushes live database updates to connected clients via sockets. ([source](http://docs.deployd.com/docs/collections/creating-collections.html))
- [Atomic Record Updates](https://awesome-repositories.com/f/data-databases/key-value-stores/atomic-field-updates/atomic-record-updates.md) — Modifies objects within a collection using atomic increments and array operations to prevent data races. ([source](http://docs.deployd.com/api))
- [Collection Property Modifiers](https://awesome-repositories.com/f/data-databases/object-property-accessors/collection-property-modifiers.md) — Modifies specific property values using granular commands to change data without overwriting entire records. ([source](http://docs.deployd.com/docs/collections/reference/updating-objects.html))
- [Realtime Synchronization](https://awesome-repositories.com/f/data-databases/optimistic-update-management/realtime-synchronization.md) — Synchronizes data across clients by pushing live backend updates instantly via sockets.
- [Persistent Storage Backends](https://awesome-repositories.com/f/data-databases/persistent-storage-backends.md) — Persists new entries to the backend database via asynchronous requests with integrated validation error handling. ([source](http://docs.deployd.com/docs/getting-started/your-first-app.html))
- [Filtered and Ordered Queries](https://awesome-repositories.com/f/data-databases/query-sorting/query-filters/filtered-and-ordered-queries.md) — Retrieves records using comparison operators and pagination to filter and sort results. ([source](http://docs.deployd.com/api))
- [Record Updating](https://awesome-repositories.com/f/data-databases/record-updating.md) — Implements methods for modifying existing data records using partial updates and conditional matching. ([source](http://docs.deployd.com/docs/collections/reference/http.html))
- [Event Stream Broadcasters](https://awesome-repositories.com/f/data-databases/record-updating/live-update-subscriptions/event-stream-broadcasters.md) — Pushes data updates and notifications to connected clients instantly through persistent WebSocket connections.
- [Record Deletion](https://awesome-repositories.com/f/data-databases/typed-data-collections/collection-deletion/record-deletion.md) — Provides the ability to remove specific records from a collection with optional target validation. ([source](http://docs.deployd.com/docs/collections/reference/http.html))
- [Visual Collection Designers](https://awesome-repositories.com/f/data-databases/visual-collection-designers.md) — Provides a visual dashboard to create structured resource endpoints with specific properties and initial data. ([source](http://docs.deployd.com/docs/getting-started/your-first-app.html))
- [Collection Querying](https://awesome-repositories.com/f/data-databases/collection-querying.md) — Fetches lists of objects or specific records using filters provided in query strings or JSON objects. ([source](http://docs.deployd.com/docs/collections/reference/http.html))
- [Database Change Tracking](https://awesome-repositories.com/f/data-databases/database-change-tracking.md) — Identifies updated properties and retrieves previous values of an item before a change occurs. ([source](http://docs.deployd.com/docs/collections/reference/event-api.html))
- [Database Persistence Stores](https://awesome-repositories.com/f/data-databases/database-persistence-stores.md) — Provides a dedicated data store linked to server database configurations for saving information. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/server.html))
- [Data Record Editing](https://awesome-repositories.com/f/data-databases/database-table-editors/data-record-editing.md) — Provides a visual interface for editing and adding records directly to the database without using the API. ([source](http://docs.deployd.com/docs/collections/creating-collections.html))
- [Asynchronous Resource Queries](https://awesome-repositories.com/f/data-databases/query-sorting/query-filters/collection-based-filtering/resource-collection-querying/asynchronous-resource-queries.md) — Retrieves records from backend resources using asynchronous functions that return arrays of objects. ([source](http://docs.deployd.com/docs/getting-started/your-first-app.html))
- [Recursive Relationship Querying](https://awesome-repositories.com/f/data-databases/recursive-relationship-querying.md) — Implements depth-limited recursive queries to retrieve nested hierarchies of linked data objects without risking infinite loops.
- [Relationship Modeling](https://awesome-repositories.com/f/data-databases/relationship-modeling.md) — Defines logical relationships between collections using embedded objects or references to organize complex data. ([source](http://docs.deployd.com/docs/collections/relationships-between-collections.html))
- [Recursive Graph Queries](https://awesome-repositories.com/f/data-databases/search-indexing/complex-search-querying/recursive-graph-queries.md) — Retrieves nested hierarchies of related objects using recursive queries with depth limits to prevent infinite loops. ([source](http://docs.deployd.com/docs/collections/relationships-between-collections.html))

### DevOps & Infrastructure

- [Backend-as-a-Service](https://awesome-repositories.com/f/devops-infrastructure/cloud-infrastructure/cloud-computing-serverless/backend-as-a-service.md) — Exposes MongoDB collections as programmable APIs with built-in CRUD operations and schema validation for frontend applications.
- [Realtime Client Connections](https://awesome-repositories.com/f/devops-infrastructure/cloud-infrastructure/cloud-computing-serverless/backend-as-a-service/authentication-as-a-service/realtime-client-connections.md) — Tracks user state and broadcasts events to specific users or all connected clients during realtime sessions. ([source](http://docs.deployd.com/docs/developing-modules))
- [WebSocket Push Updates](https://awesome-repositories.com/f/devops-infrastructure/feature-flags/real-time-updates/websocket-push-updates.md) — Pushes live data from the server to connected browsers over WebSockets whenever server-side information changes. ([source](http://docs.deployd.com/docs/collections/examples/chatroom.html))
- [Resource Behavior Customizations](https://awesome-repositories.com/f/devops-infrastructure/configuration-management/configuration-resolution-engines/tool-behavior-customizations/resource-behavior-customizations.md) — Allows registration of new resource types with unique routes and configurable behavior via a dashboard. ([source](http://docs.deployd.com/docs/developing-modules))
- [Reusable Resource Definitions](https://awesome-repositories.com/f/devops-infrastructure/configuration-management/configuration-validation/configuration-schemas/reusable-typed-schemas/reusable-resource-definitions.md) — Integrates external modules to define custom resource types that can be reused throughout the application. ([source](http://docs.deployd.com/docs/developing-modules/examples))
- [Custom Resource Integration](https://awesome-repositories.com/f/devops-infrastructure/custom-resource-integration.md) — Enables the creation of specialized resource types with custom validation and sanitization logic. ([source](http://docs.deployd.com/api))
- [Custom API Resources](https://awesome-repositories.com/f/devops-infrastructure/custom-resource-integration/custom-api-resources.md) — Allows the definition of reusable data models that integrate external modules and custom logic. ([source](http://docs.deployd.com/examples/))
- [Deployment Environment Management](https://awesome-repositories.com/f/devops-infrastructure/deployment-environment-management.md) — Isolates environment variables and pre-launch actions using separate startup scripts for different deployment stages. ([source](http://docs.deployd.com/docs/server/run-script.html))
- [Self-Hosted Administration Interfaces](https://awesome-repositories.com/f/devops-infrastructure/deployment-management/self-hosted-infrastructure-management/self-hosted-administration-interfaces.md) — Ships a self-hosted administrative interface for configuring resource settings, managing data collections, and monitoring server status.
- [Backend-as-a-Service Integrations](https://awesome-repositories.com/f/devops-infrastructure/devops/backend-as-a-service-platforms/backend-as-a-service-integrations.md) — Can be integrated as a modular component within existing programs or used as the foundation for new applications. ([source](http://docs.deployd.com/docs/server))
- [JavaScript Sandboxed Runtimes](https://awesome-repositories.com/f/devops-infrastructure/execution-environments/code-execution-runtimes/code-execution-sandboxes/javascript-sandboxed-runtimes.md) — Executes user-defined JavaScript in isolated environments with unique global scopes to prevent resource interference.

### Web Development

- [Realtime API Frameworks](https://awesome-repositories.com/f/web-development/realtime-api-frameworks.md) — Provides a framework for building networked interfaces that synchronize data and events instantly between clients and servers. ([source](http://docs.deployd.com/))
- [Realtime Collection APIs](https://awesome-repositories.com/f/web-development/realtime-collection-apis.md) — Provides a database-like API over HTTP and WebSockets for querying and synchronizing data collections in real time. ([source](http://docs.deployd.com/docs/collections))
- [Event-Driven Pipelines](https://awesome-repositories.com/f/web-development/backend-development/request-response-handling/request-and-response-transformers/event-driven-pipelines.md) — Provides an event-driven request pipeline that processes HTTP requests through a chain of listeners to manage business logic.
- [Collection API Interfaces](https://awesome-repositories.com/f/web-development/collection-api-interfaces.md) — Provides a standardized API interface for frontend applications to fetch and modify records within data collections. ([source](http://docs.deployd.com/docs/collections/examples))
- [Middleware Server Integrations](https://awesome-repositories.com/f/web-development/middleware-server-integrations.md) — Integrates as middleware into standard HTTP servers to add realtime API and authentication capabilities to existing applications.
- [REST API Backends](https://awesome-repositories.com/f/web-development/rest-api-backends.md) — Provides a server-side RESTful API backend to expose stored data and business logic to clients. ([source](https://cdn.jsdelivr.net/gh/deployd/deployd@main/README.md))
- [HTTP Request Handling](https://awesome-repositories.com/f/web-development/backend-development/request-response-handling/http-request-handling.md) — Wraps raw server request and response objects with utility methods to streamline data interaction. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/context.html))
- [HTTP Request Handlers](https://awesome-repositories.com/f/web-development/backend-development/web-frameworks/routing-request-handling/http-request-handlers.md) — Routes incoming HTTP requests to specific handlers using context objects to manage the response lifecycle. ([source](http://docs.deployd.com/docs/developing-modules/custom-resource-types.html))
- [Request Interception and Blocking](https://awesome-repositories.com/f/web-development/backend-development/web-frameworks/routing-request-handling/http-request-handlers/request-simulators/request-interception-and-blocking.md) — Provides mechanisms to intercept and block network requests based on specific conditions to return custom errors. ([source](http://docs.deployd.com/docs/collections/reference/event-api.html))
- [Client-Side Method Exposures](https://awesome-repositories.com/f/web-development/client-side-method-exposures.md) — Defines a public prototype to expose server-side functions as methods available to JavaScript clients. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/resource.html))
- [Custom API Endpoints](https://awesome-repositories.com/f/web-development/custom-api-endpoints.md) — Provides frameworks for defining custom API endpoints with specialized logic for request handling and query sanitization. ([source](http://docs.deployd.com/api))
- [Custom HTTP Server Integrations](https://awesome-repositories.com/f/web-development/custom-http-server-integrations.md) — Allows attaching request handling logic and specialized framework functionality to standard HTTP server instances. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/server.html))
- [HTTP Request Routing](https://awesome-repositories.com/f/web-development/http-request-routing.md) — Maps incoming HTTP requests at root URLs to specific handlers for data processing or task delegation. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/resource.html))
- [API Integration Middleware](https://awesome-repositories.com/f/web-development/web-server-frameworks/asgi-frameworks/middleware-libraries/api-integration-middleware.md) — Integrates as middleware to add real-time API capabilities and request handling to existing web servers. ([source](http://docs.deployd.com/docs/server/work-with-express.html))

### Business & Productivity Software

- [Data Collections](https://awesome-repositories.com/f/business-productivity-software/client-side-data-synchronization/data-collections.md) — Implements standardized CRUD operations on data collections, including filtering, retrieval, and updates. ([source](http://docs.deployd.com/docs/collections))
- [API Resource Interfaces](https://awesome-repositories.com/f/business-productivity-software/client-side-data-synchronization/data-collections/api-resource-interfaces.md) — Exposes database collections through a programmable interface for client-side data operations. ([source](http://docs.deployd.com/examples/))

### Networking & Communication

- [Broadcast Messaging](https://awesome-repositories.com/f/networking-communication/communication-platforms-services/messaging-notification-systems/messaging-services/message-broker-infrastructure/publish-subscribe-messaging/client-to-client-messaging/targeted-websocket-messaging/broadcast-messaging.md) — Sends real-time messages to all connected sockets or a filtered subset of users. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/session.html))
- [Realtime Messaging Providers](https://awesome-repositories.com/f/networking-communication/communication-platforms-services/messaging-notification-systems/messaging-services/notification-delivery-services/realtime-messaging-providers.md) — Emits and listens for asynchronous messages to enable live updates between server and clients. ([source](http://docs.deployd.com/api))
- [Internal Event Emission](https://awesome-repositories.com/f/networking-communication/communication-platforms-services/messaging-notification-systems/messaging-services/notification-delivery-services/realtime-messaging-providers/internal-event-emission.md) — Triggers asynchronous messages sent from the server to clients or between internal resources. ([source](http://docs.deployd.com/api))
- [Realtime Update Broadcasting](https://awesome-repositories.com/f/networking-communication/communication-platforms-services/messaging-notification-systems/messaging-services/notification-delivery-services/realtime-messaging-providers/realtime-update-broadcasting.md) — Sends live notifications to clients based on specific user filters or query parameters. ([source](http://docs.deployd.com/docs/collections/reference))
- [Database Change Streaming](https://awesome-repositories.com/f/networking-communication/connection-management/websocket-connection-managers/database-change-streaming.md) — Streams database modification events to connected clients over persistent connections to provide live data updates. ([source](https://cdn.jsdelivr.net/gh/deployd/deployd@main/README.md))
- [Realtime Data Subscriptions](https://awesome-repositories.com/f/networking-communication/realtime-data-subscriptions.md) — Allows clients to subscribe to data collections via sockets for immediate notifications of record changes. ([source](http://docs.deployd.com/docs/collections/advanced-guides))
- [Realtime Interface Updates](https://awesome-repositories.com/f/networking-communication/realtime-interface-updates.md) — Pushes immediate system state and data changes to the user interface via persistent socket connections. ([source](http://docs.deployd.com/examples/))
- [Publish-Subscribe Messaging](https://awesome-repositories.com/f/networking-communication/communication-platforms-services/messaging-notification-systems/messaging-services/message-broker-infrastructure/publish-subscribe-messaging.md) — Implements a publish-subscribe model that allows clients to listen for and react to server-emitted events in real time. ([source](http://docs.deployd.com/docs/collections/reference/dpd-js.html))
- [Push Notification Servers](https://awesome-repositories.com/f/networking-communication/push-notification-servers.md) — Provides server-side capabilities to push data objects as notifications to connected clients for interface synchronization. ([source](http://docs.deployd.com/docs/collections/notifying-clients.html))

### Programming Languages & Runtimes

- [Object Collection Management](https://awesome-repositories.com/f/programming-languages-runtimes/collection-data-structures/object-collection-management.md) — Allows the creation of new records in data collections with automatic unique identifier generation. ([source](http://docs.deployd.com/docs/collections/reference/http.html))
- [Sandboxed JavaScript Execution](https://awesome-repositories.com/f/programming-languages-runtimes/runtime-execution-environments/javascript-runtimes/sandboxed-javascript-execution.md) — Executes user-defined JavaScript in isolated environments with unique global scopes to prevent interference. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/script.html))

### Security & Cryptography

- [Unified Session Persistence](https://awesome-repositories.com/f/security-cryptography/identity-access-management/session-management/stateful-session-persistence/messaging-session-persistence/unified-session-persistence.md) — Provides a shared session store to track user identities across stateless HTTP requests and persistent socket connections.
- [Session State Persistence](https://awesome-repositories.com/f/security-cryptography/identity-authentication/identity-based-authentication/session-state-persistence.md) — Tracks user identities across both stateless HTTP requests and persistent socket connections using a unified session store.
- [Secure Database Access](https://awesome-repositories.com/f/security-cryptography/secure-database-access.md) — Restricts direct database API calls from untrusted clients to ensure only authorized data access is permitted. ([source](https://cdn.jsdelivr.net/gh/deployd/deployd@main/README.md))
- [User Authentication Systems](https://awesome-repositories.com/f/security-cryptography/user-authentication-systems.md) — Provides a framework for verifying user identities and controlling access to protected resources via encrypted passwords. ([source](http://docs.deployd.com/docs/users))
- [User Authentication Workflows](https://awesome-repositories.com/f/security-cryptography/user-authentication-workflows.md) — Manages the end-to-end workflow for user registration, credential verification, and session persistence. ([source](http://docs.deployd.com/))
- [User Identity Management](https://awesome-repositories.com/f/security-cryptography/user-identity-management.md) — Implements systems for managing user profiles and the complete identity-related data lifecycle. ([source](http://docs.deployd.com/examples/))
- [Access Key Management](https://awesome-repositories.com/f/security-cryptography/access-key-management.md) — Generates and manages secure authentication keys for remote administrative requests and dashboard connectivity. ([source](http://docs.deployd.com/docs/basics))
- [Administrative Privilege Escalation](https://awesome-repositories.com/f/security-cryptography/administrative-privilege-escalation.md) — Allows administrative root access via a secret header to bypass standard authentication and validation. ([source](http://docs.deployd.com/docs/collections/reference/http.html))
- [Administrative Access Controls](https://awesome-repositories.com/f/security-cryptography/api-access-security/administrative-access-controls.md) — Provides mechanisms to generate and manage keys specifically for restricting access to administrative functions. ([source](http://docs.deployd.com/docs/basics/cli.html))
- [Dashboard Access Controls](https://awesome-repositories.com/f/security-cryptography/security-and-access-control/dashboard-access-controls.md) — Secures the administrative monitoring interface through the generation and validation of access keys. ([source](http://docs.deployd.com/docs/server/your-server.html))

### Software Engineering & Architecture

- [Resource Mapping](https://awesome-repositories.com/f/software-engineering-architecture/annotation-based-metadata-mapping/schema-mappings/resource-mapping.md) — Maps structured database objects directly to programmable API endpoints with integrated validation.
- [Event-Driven Logic Injections](https://awesome-repositories.com/f/software-engineering-architecture/event-driven-logic-injections.md) — Executes user-defined scripts during specific request events to add functionality without modifying core resource code. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/resource.html))
- [Custom Middleware Implementations](https://awesome-repositories.com/f/software-engineering-architecture/middleware/custom-middleware-implementations.md) — Implements a middleware system to intercept request-response cycles and execute custom JavaScript logic.
- [Request Interceptors](https://awesome-repositories.com/f/software-engineering-architecture/request-interceptors.md) — Implements a request pipeline with interceptors for handling cross-cutting concerns like authentication and validation.
- [Request Validation](https://awesome-repositories.com/f/software-engineering-architecture/request-validation.md) — Provides middleware to validate incoming HTTP request data and aggregate error messages for comprehensive feedback. ([source](http://docs.deployd.com/docs/collections/reference))
- [API Request Handlers](https://awesome-repositories.com/f/software-engineering-architecture/dynamic-schema-mapping/runtime-schema-generation/api-request-handlers.md) — Processes incoming requests using a handler system to manage resource access and execution. ([source](http://docs.deployd.com/api))
- [Event-Driven Logic](https://awesome-repositories.com/f/software-engineering-architecture/event-driven-logic.md) — Implements specialized logic that executes automatically based on predefined event triggers within server resources. ([source](http://docs.deployd.com/docs/developing-modules/examples/event.html))
- [Request Flow Interruptions](https://awesome-repositories.com/f/software-engineering-architecture/execution-interrupts/script-execution-interruptions/request-flow-interruptions.md) — Stops current request execution and returns status codes to block unauthorized or invalid actions. ([source](http://docs.deployd.com/docs/collections/reference))
- [Module Functionality Extenders](https://awesome-repositories.com/f/software-engineering-architecture/integration-extensibility/extensibility/plugin-architectures/developer-authoring-interfaces/custom-module-implementations/module-functionality-extenders.md) — Provides mechanisms to extend server capabilities through the integration of custom logic and reusable resource modules. ([source](http://docs.deployd.com/))
- [Server Capability Extenders](https://awesome-repositories.com/f/software-engineering-architecture/integration-extensibility/extensibility/plugin-architectures/developer-authoring-interfaces/custom-module-implementations/module-functionality-extenders/cluster-functionality-extenders/server-capability-extenders.md) — Allows developers to add application-specific logic and reusable resource types to implement specialized server behaviors. ([source](http://docs.deployd.com/docs/developing-modules))
- [Module-Based Extensions](https://awesome-repositories.com/f/software-engineering-architecture/integration-extensibility/extensibility/plugin-architectures/developer-authoring-interfaces/custom-module-implementations/module-functionality-extenders/module-based-extensions.md) — Supports extending server functionality by registering external Node packages as modular extensions. ([source](https://cdn.jsdelivr.net/gh/deployd/deployd@main/README.md))
- [Dynamic UI Generators](https://awesome-repositories.com/f/software-engineering-architecture/metadata-driven-frameworks/dynamic-ui-generators.md) — Automatically generates the administration UI components based on the metadata and schema of defined API resources.

### System Administration & Monitoring

- [Administrative Dashboards](https://awesome-repositories.com/f/system-administration-monitoring/administrative-dashboards.md) — Provides a web-based interface for centralized management of resource settings, data editing, and server monitoring.
- [Remote Monitoring Dashboards](https://awesome-repositories.com/f/system-administration-monitoring/remote-monitoring-dashboards.md) — Provides a web-based administrative interface in the browser to monitor and manage the application remotely. ([source](http://docs.deployd.com/docs/basics))
- [Self-Hosted Server Management Interfaces](https://awesome-repositories.com/f/system-administration-monitoring/self-hosted-server-management-interfaces.md) — Provides a self-hosted web-based graphical interface for administering server settings and data collections.

### User Interface & Experience

- [Admin Dashboards](https://awesome-repositories.com/f/user-interface-experience/admin-dashboards.md) — Includes a self-hosted administrative dashboard for managing server settings and data collections visually.
- [UI Configuration Schemas](https://awesome-repositories.com/f/user-interface-experience/dynamic-ui-renderers/ui-configuration-schemas.md) — Uses metadata-driven schemas to render a GUI dashboard for managing resource settings. ([source](http://docs.deployd.com/docs/developing-modules/internal-api/resource.html))

### Part of an Awesome List

- [System Capability Extensions](https://awesome-repositories.com/f/awesome-lists/devtools/core-and-community-extensions/system-capability-extensions.md) — Enables the development and integration of custom modules to add new operational capabilities to the core environment. ([source](http://docs.deployd.com/))
- [API Frameworks](https://awesome-repositories.com/f/awesome-lists/devtools/api-frameworks.md) — A platform for building real-time APIs for web and mobile.

### Development Tools & Productivity

- [Daemonized Process Execution](https://awesome-repositories.com/f/development-tools-productivity/daemonized-process-execution.md) — Runs the application as a background process for continuous availability and automatic crash recovery. ([source](http://docs.deployd.com/docs/server/run-script.html))
- [Data Operation Interceptors](https://awesome-repositories.com/f/development-tools-productivity/data-interception-hooks/data-operation-interceptors.md) — Runs custom logic during data changes to validate input, restrict access, and calculate dynamic values. ([source](http://docs.deployd.com/docs/collections/adding-logic.html))
- [Event-Driven Scripting](https://awesome-repositories.com/f/development-tools-productivity/shell-script-execution-engines/custom-run-scripts/scheduled-script-executions/event-driven-scripting.md) — Executes custom JavaScript logic triggered by internal application events to automate real-time workflows. ([source](http://docs.deployd.com/))
