{"id":21533632,"url":"https://github.com/dubisdev/create-fw","last_synced_at":"2026-04-09T22:39:43.768Z","repository":{"id":45098560,"uuid":"417265099","full_name":"dubisdev/create-fw","owner":"dubisdev","description":"Light framework generator for your JS projects 🪓","archived":false,"fork":false,"pushed_at":"2022-01-08T15:39:49.000Z","size":383,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-30T17:51:42.747Z","etag":null,"topics":["create","framework-generator","hacktoberfest","javascript","npm","yarn"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/create-fw","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dubisdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-14T19:56:26.000Z","updated_at":"2022-01-08T15:39:17.000Z","dependencies_parsed_at":"2022-09-16T13:30:48.295Z","dependency_job_id":null,"html_url":"https://github.com/dubisdev/create-fw","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/dubisdev/create-fw","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubisdev%2Fcreate-fw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubisdev%2Fcreate-fw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubisdev%2Fcreate-fw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubisdev%2Fcreate-fw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dubisdev","download_url":"https://codeload.github.com/dubisdev/create-fw/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dubisdev%2Fcreate-fw/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265895985,"owners_count":23845415,"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","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":["create","framework-generator","hacktoberfest","javascript","npm","yarn"],"created_at":"2024-11-24T02:33:54.723Z","updated_at":"2026-04-09T22:39:38.731Z","avatar_url":"https://github.com/dubisdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CREATE-FW 🪓\n\n\u003e Light framework generator for your JS projects 🪓\n\n\n\n## 🧰 ESModules?\n\n\u003e ⚠️ Create-FW **does not generate CommonJS projects** since it is a non-standard technology at the time of creation of the tool. **Therefore all the generated projects will be using ESModules**.\n\n---\n\n\u003ch2 align=\"center\"\u003e 🪓 INSTALLATION \u0026 USAGE \u003c/h2\u003e\n\n**Create-fw can be used in different ways.**\n\n### Fetch from remote\n\nBy using one of the following commands:\n\n\n| Package manager \t| Command          \t|\n|-----------------\t|------------------\t|\n| npm             \t| `npm init fw`    \t|\n| npx             \t| `npx create-fw`  \t|\n| yarn            \t| `yarn create fw` \t|\n\n### Install\n\nIt is also possible to install the package globally and run it using the `create-fw` command.\n\n#### Install the package\n\n| Package manager \t|           Command           \t|\n|:---------------:\t|:---------------------------:\t|\n| npm             \t| `npm install -g create-fw`  \t|\n| yarn            \t| `yarn global add create-fw` \t|\n#### Then run the command\n```sh\ncreate-fw\n```\n\n---\n\n\u003ch2 align=\"center\"\u003e 🦴 Available Templates \u003c/h2\u003e\n\n\n| Template   \t| Description                                            \t|\n|------------\t|--------------------------------------------------------\t|\n| Basic      \t| Starts a project with a personaliced package.json file \t|\n| TypeScript \t| Creates a project for working with TS                  \t|\n| Jest       \t| Creates a project and configures Jest                  \t|\n| TS + Jest  \t| Creates a TS project and configures Jest               \t|\n| React      \t| Creates a React app (Runs `create-react-app`)          \t|\n\n    \n---\n\n\u003ch2 align=\"center\"\u003e ⚙ OPTIONS \u003c/h2\u003e\n\n### 📁 Create in folder\n\nYou can specify a folder name were the project will be started:\n\n```sh\nyarn create fw myApp\n```\nGenerates a folder named \"myApp\" and starts there the project.\n\n  \u003cp align=\"center\"\u003e-----\u003c/p\u003e\n\n\n### 🧰 Package manager\n\nBy default the CLI uses the package manager used for invoking the command:\n\n        👉 `yarn create fw` - Uses yarn\n\n        👉 `npm init fw` / `npx create-fw` - Uses npm\n\n#### 💡 You can use some flags to change this\n\n- [x] **`--yarn`**: forces the CLI to use yarn as package manager\n\n  ```bash\n  npm init framework-generator --yarn # will use yarn\n  ```\n\n- [x] **`--npm`**: forces the CLI to use npm as package manager\n\n  ```bash\n  yarn create fw --npm # will use npm\n  ```\n\n  \u003cp align=\"center\"\u003e-----\u003c/p\u003e\n\n### 💨 Fast mode (default options)\n\nThe **`-y` flag** sets all commands as default. It works like the -y flag in `npm init` or `yarn init`: creates the project without asking about personalization to the user.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdubisdev%2Fcreate-fw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdubisdev%2Fcreate-fw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdubisdev%2Fcreate-fw/lists"}