Developer-First Remote Config
The most advanced Config as a Service. Define your config structure with an intuitive interface. We take care of the rest.
microservice.js
1import { getConfigSync } from “@confly-dev/node”;
2
3const { interval, message, url } = getConfigSync();
4
5setTimeout(() => {
6 fetch(url, { message });
7}, interval)
8
confly.json
1{
2“message”: “textbox”,
3“url”: “url”,
4“interval”: “slider”
5}
6
My Microservice / Default Instance
Message
URL
Interval - 1 time per second
SSH: ~/microservice
[10:46:48 PM] POST 001 https://api.confly.dev/echo Confly is awesome!
[10:46:48 PM] POST 002 https://api.confly.dev/echo Confly is awesome!
[10:46:48 PM] POST 003 https://api.confly.dev/echo Confly is awesome!
[10:46:48 PM] POST 004 https://api.confly.dev/echo Confly is awesome!
[10:46:48 PM] POST 005 https://api.confly.dev/echo Confly is awesome!