npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@promaster-sdk/api-server

v3.6.3

Published

Promaster API server reference implementation

Downloads

194

Readme

@promaster-sdk/api-server

npm version build code style: prettier MIT license

NOTE: The code is provided as-is without support. Support is available by separate agreement with Divid Promaster.

Promaster API server reference implementation

Overview

A Promaster API server has two end-points, one that recieves files from promaster-edit (Publish API), and one that serves data to front-end applications (Client API). This repo contain a stand-alone server that implements both end-points, and middlewares that can be embedded as part of your own server.

Publish API

The Publish API is called by promaster-edit to recieve published files and therefore has to be implemented according to the specification documented at the promaster documentation site. A server that implements the Publish API can be built in any language or platform as long as it adheres to this specfication. The Publish API persists the received filed (to disk or other cache) so they can later be served by the Client API. The middleware in this repo contains a reference implementation of the Publish API in typescript/javascript.

Client API

The Client API serves the data from the files recieved via the Publish API to a client application (which will often be a selection software). This package has a reference implementation of the REST API documented at the promaster documentation site in javascript/typescript. However, the shape of a Client API can of course be anything that the client application requires and can be written in any language or platform.

How to install

yarn add @promaster-sdk/api-server

How to use the stand-alone server

node lib/server.js

The server can be configured with environment variables as, see the config schema for all settings..

How to use the middlewares

The implementations in this package are exported as Koa middlewares. If you are using Koa, you can install and use these middlewares in your own server to make it become a Promaster Publish API target and also a Promater Client API server.

Publish API

The example below will mount the Publish API middleware on the /publish endpoint and store published files in the /files folder. The middleware will create the folder if it does not exist:

import * as Koa from "koa";
import * as mount from "koa-mount";
import { createPublishApiMiddleware } from "@promaster-sdk/api-server";

const app = new Koa();
const publishApi = createPublishApiMiddleware(
    () => "/files",
    undefined: string, // prefix?: string - If the middleware is mounted on a subpath
    50, // readFilesInParallel: number - Max parallel read requests
    true, // pruneFiles = true - If files should be deleted when not referenced by any marker files
  (databaseId) => {
    console.log(`Publish for database ${databaseId} complete.`);
    return Promise.resolve();
  }), // onPublishComplete: (databaseId: string) => Promise<void> =  - Register callback for when a database publish has been completed;
app.use(mount("/publish", publishApi));

Client REST API

This repo has a reference implementation of a REST API that can serve the files recieved by the Publish API to front-end clients. How the clients call the API is documented at the promaster documentation site.

NOTE: This is only a reference implementation, you can write your own Client API that suits the need of your application. For example you may need an authentication solution, or want to only serve parts of the data.

The Koa middleware for the Client REST API can be embedded into your existing Koa application like this:

import * as Koa from "koa";
import * as mount from "koa-mount";
import { createClientRestMiddleware } from "@promaster-sdk/api-server";

const app = new Koa();
const clientRestApi = createClientRestMiddleware(
  () => "/files",
  () => "http://myserver/"
);
app.use(mount("/rest", clientRestApi));

Client GraphQL API

This repo has an implementation of a GraphQL API that can serve the files recieved by the Publish API to front-end clients. The schema is determined dynamically from the tables available in hte published files which makes it possible to generate types from the schema that corresponds to the tables.

NOTE: This is only a reference implementation, you can write your own Client API that suits the need of your application. For example you may need an authentication solution, or want to only serve parts of the data.

The Koa middleware for the Client GraphQL API can be embedded into your existing Koa application like this:

import * as Koa from "koa";
import * as mount from "koa-mount";
import { createClientRestMiddleware } from "@promaster-sdk/api-server";

const app = new Koa();
const clientGraphQLApi = createClientGraphQLMiddleware(
  () => "/files",
  () => "http://myserver/"
);
app.use(mount("/graphql", clientGraphQLApi));

Open Telemetry

The server has support for OpenTelemetry which can be enabled with the OTEL_ENABLE environment variable.

OTEL_ENABLE=true

When enables, you can use the standard environment variables to configure open telemetry:

  • OTEL_RESOURCE_ATTRIBUTES
  • OTEL_SERVICE_NAME
  • OTEL_LOG_LEVEL
  • OTEL_PROPAGATORS
  • OTEL_TRACES_SAMPLER
  • OTEL_TRACES_SAMPLER_ARG

For example to set the service name and use verbose diagnostics logging:

OTEL_SERVICE_NAME=my-api-server
OTEL_LOG_LEVEL=verbose

By default, OTEL_TRACES_SAMPLER is set to parentbased_always_on which means tracing will be used if the parent passes the headers to enable it.

How to develop

Clone the repo and run:

cat << EOF > .env
PUBLISH_AUTHORIZATION=mytoken
EOF
yarn start

In promaster-edit, register a new server on port 4500 with an authorization header value of mytoken. Publish once to the this server, then you can try the Client API at http://localhost:4500/rest/v3/markers.

How to publish to local server

If you are developing a new API server and want promaster to publish to it you can expose your local server on the internet using ngrok.

Install ngrok CLI tool and then start it with this commmand:

ngrok http 4500
  • This should give you a temporary public URL that sends traffic to localhost:4500.
  • The URL will be something like http://xxxxxxx.ngrok.io.
  • In promaster-edit under the publish area, create an API server with this URL.
  • You can now publish to this API server and the data will be sent to localhost:4500.

How to publish new version

# We should always publish both to npm and dockerhub at the same time with the same version
# First publish a new package version to npm, run **one** of the commands below
# This command will both increment version and publish the package to npm
yarn version --patch
yarn version --minor
yarn version --major
# You should be promted for your desired version by the above command
# To build and push to dockerhub, replace <version> in the below commands with
# the version you entered for the above command
# NOTE: Need to have this repo as current working dir
# First build locally
# NOTE: there is a "v" before the version number here
docker build -t dividab/promaster-public-api:v<version> .
# And then push to dockerhub
docker push dividab/promaster-public-api:v<version>