0.0.17 • Published 7 months ago

@similie/http-connector v0.0.17

Weekly downloads
-
License
-
Repository
-
Last release
7 months ago

HTTP Connector for Model Connectors

License: MIT npm Version

Table of Contents

Introduction

HTTP Connector is a specialized connector within the Model Connectors framework designed for front-end applications. It facilitates seamless CRUD (Create, Read, Update, Delete) operations by communicating with RESTful APIs, ensuring consistent model management across different implementation environments.

Whether you're building a React, Vue, or Angular application, the HTTP Connector provides a unified interface to interact with your backend services, abstracting the complexities of HTTP requests and responses.

Features

  • Unified CRUD Operations: Perform create, read, update, and delete operations with a consistent API.
  • TypeScript Support: Leverage strong typing for safer and more predictable code.
  • Configurable Endpoints: Easily configure base URLs and endpoints to match your API structure.
  • Authentication Support: Integrate authentication mechanisms like JWT tokens seamlessly.
  • Error Handling: Built-in mechanisms to handle and propagate errors effectively.
  • Extensible: Customize and extend functionalities to fit specific project needs.

Installation

Install the @similie/http-connector package via npm:

npm install @similie/http-connector
import {
  GlobalConnection,
  Model,
  IEntity,
} from "@similie/model-connect-entities";
import { HTTPConnector } from "@similie/http-connector";
GlobalConnection.startInstance(new HTTPConnector("https://api.example.com"));

interface IUser extends IEntity {
  name: string;
  age: number;
  email: string;
}
class UserModel extends Model<IUser> {}

const um = new UserModel();

um.find({ where: { name: "boomo", age: { ">=": 30 } } })
  .fetch()
  .then((users: IUser[]) => {
    console.log("My users", users);
  });

See Model Connect Entities for more information on how to use the Model Connect framework.

Contributing

We welcome contributions from the community and encourage you to help improve this project! Whether you’re fixing bugs, adding features, or proposing enhancements, your input is highly valued.

Pull Requests

We gladly accept pull requests. If you have a fix, enhancement, or idea, follow these steps to contribute: 1. Fork the Repository: Clone your fork locally to begin development. 2. Create a Branch: Use a descriptive name for your branch, such as feature/new-connector-type or bugfix/issue-123. 3. Write and Test Your Code: Ensure that your changes meet our standards and include tests where appropriate. 4. Submit a Pull Request: When your work is ready, open a pull request to the main branch, describing your changes clearly.

Adding New Connector Types

We especially encourage the development of new connector types to expand use cases. If you’re implementing a connector for a specific system, database, or platform, here’s how you can contribute: 1. Review Existing Connectors: Familiarize yourself with the structure and design of current connectors. 2. Follow the Guidelines: Maintain consistent naming conventions, design patterns, and documentation practices. 3. Provide Documentation: Include a clear README or guide detailing how to configure and use your connector. 4. Submit Tests: Provide test cases to verify functionality and ensure compatibility with the system.

Need Help?

If you’re unsure where to start or have questions about your contribution, don’t hesitate to open a discussion or issue. We’re here to collaborate and make this project better together.

Thank you for your interest in contributing! We’re excited to see what you’ll build.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Similie

Similie is a technology company based out of Timor-Leste, dedicated to developing innovative solutions that support international development initiatives and climate-change adaption. Our mission is to harness the power of technology to drive positive change and improve lives around the world. With a focus on sustainability, community engagement, and social impact, we strive to create products and services that make a real difference in people's lives.

0.0.17

7 months ago

0.0.16

7 months ago

0.0.15

7 months ago

0.0.13

7 months ago

0.0.12

7 months ago

0.0.11

7 months ago

0.0.10

7 months ago

0.0.9

7 months ago

0.0.8

7 months ago

0.0.7

8 months ago

0.0.5

8 months ago