fastay
v1.9.1
Published
Linha de comando (CLI) para criar e gerenciar projetos backend modernos com Fastay.js,
Downloads
1,068
Maintainers
Readme
🚀 Fastay CLI
fastay is a command-line interface (CLI) tool for creating and managing modern backend projects with Fastay.js - a lightweight, TypeScript-first framework for building APIs quickly and predictably.
📦 Get Started: @syntay/fastay on npm • 🐙 Source Code: GitHub Repository
🔹 Installation
You can install it globally via npm:
npm install -g fastayOr use directly with npx without installation:
npx fastay <command>🔹 Commands
| Command | Description |
| -------------------------- | --------------------------------------------------------------------------- |
| fastay create-app <name> | Creates a new Fastay project based on templates. |
| fastay dev | Starts the development server. |
| fastay dev:watch | Starts the development server with watch mode (auto-reload). |
| fastay build | Builds the project for production (TypeScript → JavaScript). |
| fastay start | Starts the compiled project in production mode. |
🔹 Examples
Create a new project:
fastay create-app my-api
# or using npx
npx fastay create-app my-apiRun development server:
cd my-api
fastay devBuild for production:
fastay build
fastay start🔹 Features
- Automatic generation of modern backend projects.
- Full TypeScript support.
- Integration with ORMs (Prisma, Drizzle, Kysely, TypeORM, Sequelize) or direct SQL access.
- Ready-to-use REST API templates.
- Easy usage via
npxwithout global installation required.
🔹 Contributing
Contributions are welcome!
--
🔹 License
MIT © Syntay Team
