Skip to content

DevOps Agility With
Node.js

AliaJS can help you to be more agile & resilient with your system’s infrastructure ☁️
Why AliaJS over a proven orchestrator?
Most orchestrators & infrastructure as code tools are too complex for small to medium size projects, they target the enterprise.
Despite 6 years of progress, Kubernetes is still incredibly complex – Drew Bradstock
Article: theregister.com/…/kubernetes

Infrastructure With The Most Stable Programming Language ✨


AliaJS enables you to write infrastructure code in JavaScript. Which allows you to test & build features with language-specific features like loops, functions, etc.
Do you have any real use case as an example?
Like this loop that tests the validity of the certificate before it receives the production’s network interface:
await retry(async () => {
const response = await fetch(`https://${server_name}/404-uc3C6`, {
agent: new https.Agent({
lookup: function(hostname, options, callback) {
callback(undefined, address, 4)
}
})
})
if (response.status !== 404) {
throw new Error(`Service ${service.name} not responding 404 status`)
}
})

Active Projects By @jdecaron

More Magic 🪄 to Come