@orchesty/connector-beeceptor
v2.0.0
Published
[](https://www.npmjs.com/package/@orchesty/connector-beeceptor) [](https://github.com/Orchesty/orchesty-nodej
Readme
Beeceptor Connector
An Orchesty connector for Beeceptor, an online mock API server that lets you deploy a mock API in seconds — no downloads, no dependencies, no delays.
Application Type
Basic
This connector authenticates against any Beeceptor endpoint URL. User and password are optional and used only when the mock endpoint requires HTTP Basic authentication.
| Field | Description |
|---|---|
| url | The full Beeceptor endpoint URL (e.g. https://my-endpoint.free.beeceptor.com) |
| user | Optional username for Basic authentication |
| password | Optional password for Basic authentication |
Components
This package provides only the BeeceptorApplication class. It is intended as a foundation for building custom connectors that target Beeceptor mock endpoints during development and testing — no pre-built connectors or batch nodes are included.
Setup
Credentials
- Sign up or log in at beeceptor.com.
- Create a new endpoint — a unique URL will be generated (e.g.
https://my-app.free.beeceptor.com). - In Orchesty, open the Beeceptor application settings and fill in:
- Url — paste your Beeceptor endpoint URL
- User and Password — only if your endpoint requires Basic auth (optional)
API Documentation
Beeceptor Documentation: https://beeceptor.com/docs/
Installation & Usage
Install the package:
npm install @orchesty/connector-beeceptor @orchesty/nodejs-sdk
# or
pnpm add @orchesty/connector-beeceptor @orchesty/nodejs-sdkRegister the application in your Orchesty DI container:
import { container } from '@orchesty/nodejs-sdk';
import BeeceptorApplication from '@orchesty/connector-beeceptor/dist/BeeceptorApplication';
const app = new BeeceptorApplication();
container.setApplication(app);License
This connector is released under the Apache License 2.0. See the LICENSE file for the full license text.
Contributing
Contributions are welcome! This connector is part of the open-source Orchesty Node.js Connectors monorepo.
For guidelines on how to create or update connectors — including project setup, coding conventions, and how to write tests — please refer to the Contributing to Connectors guide.
All contributions should include:
- Source code in
src/following the existing connector structure - Tests in
src/**/__tests__/withinput.json,mock.json, andoutput.jsonfixtures - An updated
CHANGELOG.mdentry
