TypeScript Node.js starter with @dcyfr/ai integration, CLI tooling, and production-ready patterns.
{
"name": "@dcyfr/ai-nodejs",
"version": "1.0.0",
"description": "TypeScript Node.js starter with @dcyfr/ai integration, CLI tooling, and production-ready patterns.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest"
},
"dependencies": {
"@dcyfr/ai": "^1.0.0",
"next": "^15",
"react": "^19",
"react-dom": "^19"
}
}Clone the template
npx create-dcyfr-app my-app --template dcyfr-ai-nodejsInstall dependencies
cd my-app && npm installConfigure environment
cp .env.example .env.localStart developing
npm run dev