0.20.0 • Published 7 months ago

@rest-vir/implement-service v0.20.0

Weekly downloads
-
License
(MIT or CC0 1.0)
Repository
github
Last release
7 months ago

@rest-vir/implement-service

Part of the rest-vir suite. This package is used for implementing a REST service already defined by @rest-vir/define-service.

See the full docs at https://electrovir.github.io/rest-vir

Installation

npm i @rest-vir/implement-service

Usage

Implement your service:

import {HttpStatus, implementService} from '@rest-vir/implement-service';

export const myServiceImplementation = implementService(
    {
        service: myServiceDefinition,
    },
    {
        endpoints: {
            '/my-endpoint'() {
                return {
                    statusCode: HttpStatus.Ok,
                };
            },
            async '/my-endpoint/:user-id'({pathParams}) {
                const user = await readUserFromDatabase(pathParams['user-id']);

                return {
                    statusCode: HttpStatus.Ok,
                    responseData: user,
                };
            },
        },
        webSockets: {
            '/my-web-socket': {
                message({webSocket}) {
                    webSocket.send('hi!');
                },
            },
        },
    },
);
0.20.0

7 months ago

0.19.2

7 months ago

0.19.1

7 months ago

0.19.0

7 months ago

0.18.1

8 months ago

0.18.0

8 months ago

0.17.2

8 months ago

0.17.1

8 months ago

0.17.0

8 months ago

0.16.0

8 months ago

0.15.1

8 months ago

0.15.0

8 months ago

0.14.0

8 months ago

0.13.0

8 months ago

0.12.0

8 months ago

0.11.4

8 months ago

0.11.3

8 months ago

0.11.2

8 months ago

0.11.1

9 months ago

0.11.0

9 months ago

0.10.0

9 months ago

0.9.1

9 months ago

0.9.0

9 months ago

0.8.3

9 months ago

0.8.2

9 months ago

0.8.1

10 months ago

0.8.0

10 months ago

0.7.0

10 months ago

0.6.0

10 months ago

0.5.4

10 months ago

0.5.3

10 months ago

0.5.2

10 months ago

0.5.1

10 months ago

0.5.0

10 months ago

0.4.1

10 months ago

0.4.0

10 months ago

0.3.4

10 months ago

0.3.3

10 months ago

0.3.2

10 months ago

0.3.1

10 months ago

0.3.0

10 months ago

0.2.0

10 months ago

0.1.0

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago