0.3.3 • Published 2 years ago

typedapi-parser v0.3.3

Weekly downloads
97
License
MIT
Repository
github
Last release
2 years ago

TypedAPI Parser library

WebsiteDocumentation

TypedAPI is set of libraries for creating client-server APIs for applications written in typescript. You describe API like ordinar class with only methods that return Promise. Then parser will create interface based on that class. Interface will be used by client`s application. Then you only need to configure connectors (HTTP and WebSocket available). Also API class can contain Events (HTTP connector will use HTTP polling) and child classes. For more information see documentation.

About this library

This library export only one method "build" that parse your api class and create files with reflection for server and with interface and reflection for client. It accept only one parameter with configuration:

interface BuildConfig {
    /**
     * Path to file where your Api object
     */
    sourceFilename: string

    /**
     * Class name in file (ex Api, Backend, MyCompanyApi etc)
     */
    sourceObjectName: string

    /**
     * Ouput file name for client where will 
     * be interface, reflection, and Api factory
     */
    outFilename: string

    /**
     * Ouput file name for server where will be
     * stored Api reflection
     */
    reflectionOutFileName: string
}

How to build api interface

Install TypedApi parser:

npm install --save typedapi-parser

How to run from code:

import {build} from "typedapi-parser"
build({
    sourceFilename: "./src/BackendApi.ts",
    sourceObjectName: "BackendApi",
    outFilename: "../client/apiFactory.ts",
    reflectionOutFileName: "./apiReflection.ts",
})

How to run from cli:

./node-modules/.bin/typedapi-parser ./src/BackendApi.ts BackendApi ../client/apiFactory.ts ./apiReflection.ts

Cli accepts parameters:

typedapi-parse [sourceFilename] [sourceObjectName] [outFilename] [reflectionOutFileName]

How to create script in package.json:

{
    "scripts": {
        "parseApi": "typedapi-parse ./src/BackendApi.ts BackendApi ../client/apiFactory.ts ./apiReflection.ts"
    }
}

Then just run parser like

npm run parseApi

For more information see Getting started page to start working with TypedAPI.

0.3.3

2 years ago

0.3.2

3 years ago

0.3.1-0

3 years ago

0.3.1-1

3 years ago

0.3.0

3 years ago

0.3.1

3 years ago

0.1.11

3 years ago

0.2.0

3 years ago

0.1.10

3 years ago

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.2

3 years ago

0.1.3

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago