Documentation
Explore the docs to learn how to use and integrate with acklo.
Node.js integration
The Node.js SDK lets you integrate with acklo in minutes.
Quick starts
Reference
Example
app.get('/api/experimental_api', (req, res) => {
if (!acklo.getConfig('features.experimental_api')) {
res.status(404).end();
return;
}
res.json({ hello: 'world' })
});
Configuration syntax
The acklo configuration file (acklo.config.yml
) lets you define
your application's configuration.
Example
---
version: v1
configuration:
- id: app_config
name: App config
properties:
- id: log_level
name: Log level
type: string
default: trace