flux-platform 0.4.0

A local-first, AI-native developer automation platform: build, test, package, and deploy from a single .flux file, and make your repository legible to AI agents.
1
2
3
4
5
6
7
8
9
function greeting() {
  return 'Hello from a Flux-built Node app!'
}

module.exports = { greeting }

if (require.main === module) {
  console.log(greeting())
}