tanstack
Version:
A CLI tool to create TanStack applications
41 lines (31 loc) • 1.67 kB
JavaScript
#!/usr/bin/env node
console.log(`
╔══════════════════════════════════════════════════════╗
║ ║
║ 🚀 TanStack App Creator ║
║ ║
║ Welcome to create-tanstack-app! ║
║ ║
║ A powerful CLI tool for scaffolding TanStack apps ║
║ ║
╚══════════════════════════════════════════════════════╝
🎉 Thank you for using create-tanstack-app!
📱 Follow the creator:
🐦 Twitter/X: https://x.com/sh20raj
🐙 GitHub: https://github.com/sh20raj
💡 This tool helps you bootstrap modern TanStack applications
with best practices and optimal configurations.
🔧 Usage:
npx create-tanstack-app my-app
📚 Learn more about TanStack:
- TanStack Query: https://tanstack.com/query
- TanStack Router: https://tanstack.com/router
- TanStack Table: https://tanstack.com/table
- TanStack Virtual: https://tanstack.com/virtual
🌟 Star the repo if you find it useful!
https://github.com/sh20raj/tanstack
Happy coding! 🎯
`);
// Future implementation would include actual app scaffolding logic here
console.log('⚠️ App scaffolding functionality coming soon!');
console.log('📧 Stay tuned for updates or contribute to the project.');