{"id":31230859,"url":"https://github.com/ssebasa/quickstack","last_synced_at":"2025-10-06T06:44:53.813Z","repository":{"id":315740601,"uuid":"1036110136","full_name":"SsebasA/QuickStack","owner":"SsebasA","description":"CLI Application for generating JS and TS projects using the most popular frameworks ","archived":false,"fork":false,"pushed_at":"2025-08-12T19:45:47.000Z","size":55,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-20T12:53:58.860Z","etag":null,"topics":["angular","astro","framework","js","nextjs","nodejs","npm","npm-package","ts","vite"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/quickstack-cli","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SsebasA.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-11T15:14:21.000Z","updated_at":"2025-08-13T18:34:09.000Z","dependencies_parsed_at":"2025-09-20T12:54:01.978Z","dependency_job_id":"aac66ace-0307-415f-b785-a2f330a34d9e","html_url":"https://github.com/SsebasA/QuickStack","commit_stats":null,"previous_names":["ssebasa/quickstack"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/SsebasA/QuickStack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SsebasA%2FQuickStack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SsebasA%2FQuickStack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SsebasA%2FQuickStack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SsebasA%2FQuickStack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SsebasA","download_url":"https://codeload.github.com/SsebasA/QuickStack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SsebasA%2FQuickStack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278571296,"owners_count":26008683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","astro","framework","js","nextjs","nodejs","npm","npm-package","ts","vite"],"created_at":"2025-09-22T10:14:08.860Z","updated_at":"2025-10-06T06:44:53.778Z","avatar_url":"https://github.com/SsebasA.png","language":"TypeScript","readme":"# QuickStack\n\n\u003e CLI Application for creating projects in a variety of JS and TS Frameworks with just one **quick** command. \n\n[![npm version](https://badge.fury.io/js/quickstack-cli.svg)](https://www.npmjs.com/package/quickstack-cli)\n[![npm downloads](https://img.shields.io/npm/dm/quickstack-cli.svg)](https://www.npmjs.com/package/quickstack-cli)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n\n## 💡 Features\n\n- 🎯 **Unified Interface** - One command for generate new projects\n- 🤖 **Interactive** - Smart prompts when arguments are missing \n- ⚙️ **Zero Config** - No configuration needed, works out of the box\n\n## 🚀 Quick Start\n\n### Installation\n\n```bash\n# Install globally\nnpm install -g quickstack-cli\n\n# Or use directly with npx\nnpx quickstack-cli create\n```\n\n## 📦 Supported frameworks\n| Framework | Icon | Command | Description |\n|-----------|------|---------|-------------|\n| **Vite** | ⚡ | `quickstack create vite` | Lightning fast build tool |\n| **Next.js** | ⏭︎ | `quickstack create next` | React framework for production |\n| **Node.js** | ⬢ | `quickstack create node` | JavaScript runtime environment |\n| **Astro** | 🚀 | `quickstack create astro` | Modern static site generator |\n| **Angular** | 🅰️ | `quickstack create angular` | Enterprise web application framework |\n\n## 🛠️ Requirements\n\n- Node.js 16.0.0 or higher\n\n\n## ⌘ Commands\n\n### `quickstack create [framework] [name]`\n\nCreate a new project with the specified framework and project name\n\n**Arguments:**\n- `framework` (optional) - Framework of the new project. If not provided, you'll be prompted to choose\n- `name` (optional) - Project name. If not provided, you'll be prompted to enter one. By default the name is app\n\n### `quickstack list-frameworks`\n\nDisplay all supported frameworks with their descriptions.\n\n\n## Basic usage\n\n```bash\n# Interactive mode - choose framework and name\nquickstack create\n\n# Specify the framework\nquickstack create next\n\n# Specify the framework and app name (app by default)\nquickstack create next my-next-app\n```\n\n## 📚 Examples\n\n### Create a Next.js project with the interactive CLI\n```bash\n$ quickstack create\n? Choose a framework \u003e next\n? Project name (app) \u003e my-next-app\n```\n\n### Create a project with the desired framework and app name\n```bash\n$ quickstack create vite my-app\n```\n\n## 📝 License\n\nThis project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for further details.\n\n\n---\n\n\u003cp align=\"center\"\u003e\n    \u003csub\u003eBuild by Sebastián Antonio Almanza\u003c/sub\u003e\n    \u003csub\u003e\u003ca href=\"https://github.com/SsebasA\"\u003eGithub Profile\u003c/a\u003e\u003c/sub\u003e\n\u003c/p\u003e","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssebasa%2Fquickstack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fssebasa%2Fquickstack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssebasa%2Fquickstack/lists"}