GithubHelp home page GithubHelp logo

apikit's Introduction

APIKit

APIKit Logo

Swift 5.2 License

APIKit is a Swift library to give you more flexibility when developing web APIs. In its current version APIKit is a POC for a framework that provides a declarative, composeable DSL which makes developing APIs against a communication protocol (CCP) natural interface a breeze. APIKit handles the mapping to concrete CCPs with no hassle.

Example

Below is an example of an API that manages Vehicles and Customers beloging to a car vendor.

struct CarVendorAPI: API {
    var content: APILogic {
        Version("v1") {
            CRUD<Car>()
            
            Group {
                ReadOne<Customer>()
                Update<Customer>()
            }.RESTGroup("customer")
            
            CRUD<Customer>()
        }
    }
}

Installation

Swift Package Manager

You can install APIKit via Swift Package Manager by adding the following line to your Package.swift:

import PackageDescription

let package = Package(
    [...]
    dependencies: [
        .Package(url: "https://github.com/Apodini/APIKit.git", majorVersion: XYZ)
    ]
)

Contributing

Contributions to this projects are welcome. Please make sure to read the contribution guidelines first.

License

APIKit is licensed under the MIT License. See LICENSE file for more information.

apikit's People

Contributors

thomasraith avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.