4.0.0 • Published 5 days ago

@merrymake/service v4.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
5 days ago

Typescript Service Library for Merrymake

This is the official Typescript service library for Merrymake. It defines all the basic functions needed to work with Merrymake.

Usage

Here is the most basic example of how to use this library:

import {
  merrymakeService,
  type PayloadBufferPromise,
  MIME_TYPES,
  replyToOrigin,
  Envelope,
} from "@merrymake/service";

async function handleHello(payloadBuffer: Buffer, envelope: Envelope) {
  let payload = payloadBuffer.toString();
  replyToOrigin(`Hello, ${payload}!`, MIME_TYPES.txt);
}

merrymakeService({
  handleHello,
});

Tutorials and templates

For more information check out our tutorials at merrymake.dev.

All templates are available through our CLI and on our GitHub.

4.0.0

5 days ago

3.1.0

5 months ago

3.0.5

8 months ago

3.0.4

8 months ago