create-cloudflare 0.0.0-fd9dff833 → 0.0.0-fdae3f766

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (225) hide show
  1. package/dist/cli.js +1314 -1185
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +8 -8
  4. package/templates/analog/c3.ts +0 -24
  5. package/templates/analog/templates/env.d.ts +1 -1
  6. package/templates/angular/pages/c3.ts +4 -3
  7. package/templates/angular/pages/templates/wrangler.jsonc +5 -0
  8. package/templates/angular/workers/c3.ts +1 -0
  9. package/templates/astro/c3.ts +5 -93
  10. package/templates/astro/pages/c3.ts +99 -0
  11. package/{templates-experimental/astro → templates/astro/workers}/c3.ts +2 -2
  12. package/templates/astro/workers/templates/js/public/.assetsignore +2 -0
  13. package/{templates-experimental/astro/templates/ts → templates/astro/workers/templates/js}/wrangler.jsonc +2 -1
  14. package/templates/astro/workers/templates/ts/public/.assetsignore +2 -0
  15. package/{templates-experimental/astro/templates/js → templates/astro/workers/templates/ts}/wrangler.jsonc +3 -2
  16. package/templates/common/c3.ts +5 -1
  17. package/templates/common/ts/tsconfig.json +0 -3
  18. package/templates/docusaurus/pages/c3.ts +2 -0
  19. package/templates/docusaurus/workers/c3.ts +1 -0
  20. package/templates/gatsby/pages/c3.ts +2 -0
  21. package/templates/gatsby/workers/c3.ts +1 -0
  22. package/templates/hello-world/c3.ts +3 -2
  23. package/templates/hello-world/js/package.json +1 -1
  24. package/templates/hello-world/py/README.md +2 -2
  25. package/templates/hello-world/py/pyproject.toml +1 -1
  26. package/templates/hello-world/py/src/entry.py +3 -2
  27. package/templates/hello-world/ts/package.json +1 -1
  28. package/templates/hello-world/ts/test/env.d.ts +3 -0
  29. package/templates/hello-world/ts/test/index.spec.ts +0 -1
  30. package/templates/hello-world/ts/test/tsconfig.json +1 -1
  31. package/templates/hello-world/ts/tsconfig.json +0 -2
  32. package/{templates-experimental → templates}/hello-world-assets-only/c3.ts +4 -3
  33. package/{templates-experimental → templates}/hello-world-assets-only/templates/public/index.html +1 -0
  34. package/{templates-experimental → templates}/hello-world-assets-only/templates/wrangler.jsonc +1 -0
  35. package/templates/hello-world-durable-object/c3.ts +9 -3
  36. package/templates/hello-world-durable-object/js/src/index.js +10 -9
  37. package/templates/hello-world-durable-object/js/wrangler.jsonc +1 -1
  38. package/templates/hello-world-durable-object/py/.python-version +1 -0
  39. package/templates/hello-world-durable-object/py/README.md +23 -0
  40. package/templates/hello-world-durable-object/py/__dot__gitignore +68 -0
  41. package/templates/hello-world-durable-object/py/package.json +13 -0
  42. package/templates/hello-world-durable-object/py/pyproject.toml +9 -0
  43. package/templates/hello-world-durable-object/py/src/entry.py +66 -0
  44. package/templates/hello-world-durable-object/py/uv.lock +22 -0
  45. package/templates/hello-world-durable-object/py/wrangler.jsonc +27 -0
  46. package/templates/hello-world-durable-object/ts/src/index.ts +10 -9
  47. package/templates/hello-world-durable-object/ts/tsconfig.json +0 -2
  48. package/templates/hello-world-durable-object/ts/wrangler.jsonc +1 -1
  49. package/{templates-experimental → templates}/hello-world-durable-object-with-assets/c3.ts +6 -3
  50. package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/public/index.html +1 -0
  51. package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/src/index.js +11 -10
  52. package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/wrangler.jsonc +3 -3
  53. package/templates/hello-world-durable-object-with-assets/py/.python-version +1 -0
  54. package/templates/hello-world-durable-object-with-assets/py/README.md +23 -0
  55. package/{templates-experimental/hello-world-durable-object-with-assets/ts → templates/hello-world-durable-object-with-assets/py}/public/index.html +1 -0
  56. package/templates/hello-world-durable-object-with-assets/py/pyproject.toml +9 -0
  57. package/templates/hello-world-durable-object-with-assets/py/src/entry.py +66 -0
  58. package/templates/hello-world-durable-object-with-assets/py/uv.lock +22 -0
  59. package/templates/hello-world-durable-object-with-assets/py/wrangler.jsonc +31 -0
  60. package/templates/hello-world-durable-object-with-assets/ts/public/index.html +20 -0
  61. package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/src/index.ts +10 -9
  62. package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/tsconfig.json +0 -2
  63. package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/wrangler.jsonc +2 -2
  64. package/templates/hello-world-with-assets/c3.ts +25 -0
  65. package/{templates-experimental → templates}/hello-world-with-assets/js/package.json +1 -1
  66. package/{templates-experimental/hello-world-with-assets/py → templates/hello-world-with-assets/js}/public/index.html +3 -2
  67. package/{templates-experimental → templates}/hello-world-with-assets/js/wrangler.jsonc +3 -2
  68. package/templates/hello-world-with-assets/py/.python-version +1 -0
  69. package/templates/hello-world-with-assets/py/README.md +23 -0
  70. package/templates/hello-world-with-assets/py/__dot__gitignore +68 -0
  71. package/templates/hello-world-with-assets/py/package.json +13 -0
  72. package/{templates-experimental/hello-world-with-assets/ts → templates/hello-world-with-assets/py}/public/index.html +3 -2
  73. package/templates/hello-world-with-assets/py/pyproject.toml +9 -0
  74. package/templates/hello-world-with-assets/py/src/entry.py +11 -0
  75. package/templates/hello-world-with-assets/py/uv.lock +22 -0
  76. package/{templates-experimental → templates}/hello-world-with-assets/py/wrangler.jsonc +1 -1
  77. package/{templates-experimental → templates}/hello-world-with-assets/ts/package.json +1 -1
  78. package/{templates-experimental/hello-world-with-assets/js → templates/hello-world-with-assets/ts}/public/index.html +3 -2
  79. package/templates/hello-world-with-assets/ts/test/env.d.ts +3 -0
  80. package/templates/hello-world-with-assets/ts/test/tsconfig.json +8 -0
  81. package/{templates-experimental → templates}/hello-world-with-assets/ts/tsconfig.json +0 -2
  82. package/{templates-experimental → templates}/hello-world-with-assets/ts/wrangler.jsonc +2 -2
  83. package/templates/hono/c3.ts +5 -66
  84. package/templates/hono/pages/c3.ts +47 -0
  85. package/templates/hono/pages/templates/src/index.tsx +12 -0
  86. package/templates/hono/{templates → pages/templates}/wrangler.jsonc +1 -1
  87. package/{templates-experimental/hono → templates/hono/workers}/c3.ts +5 -5
  88. package/templates/next/c3.ts +7 -221
  89. package/templates/next/pages/c3.ts +221 -0
  90. package/{templates-experimental/next → templates/next/workers}/c3.ts +12 -16
  91. package/templates/next/workers/templates/open-next.config.ts +9 -0
  92. package/{templates-experimental/next → templates/next/workers}/templates/wrangler.jsonc +3 -2
  93. package/templates/nuxt/pages/c3.ts +4 -26
  94. package/templates/nuxt/pages/templates/env.d.ts +1 -1
  95. package/templates/nuxt/workers/c3.ts +3 -26
  96. package/templates/nuxt/workers/templates/env.d.ts +1 -1
  97. package/templates/openapi/c3.ts +5 -1
  98. package/templates/openapi/ts/__dot__gitignore +1 -0
  99. package/templates/openapi/ts/package.json +7 -6
  100. package/templates/openapi/ts/src/endpoints/taskCreate.ts +2 -2
  101. package/templates/openapi/ts/src/endpoints/taskDelete.ts +2 -2
  102. package/templates/openapi/ts/src/endpoints/taskFetch.ts +2 -2
  103. package/templates/openapi/ts/src/endpoints/taskList.ts +2 -2
  104. package/templates/openapi/ts/src/index.ts +4 -1
  105. package/templates/openapi/ts/src/types.ts +3 -0
  106. package/templates/openapi/ts/tsconfig.json +18 -21
  107. package/templates/pre-existing/c3.ts +6 -2
  108. package/templates/queues/c3.ts +5 -1
  109. package/templates/queues/ts/tsconfig.json +0 -2
  110. package/templates/qwik/c3.ts +5 -144
  111. package/templates/qwik/pages/c3.ts +151 -0
  112. package/{templates-experimental/qwik → templates/qwik/workers}/c3.ts +5 -6
  113. package/{templates-experimental/qwik → templates/qwik/workers}/templates/wrangler.jsonc +2 -1
  114. package/templates/react/pages/c3.ts +5 -2
  115. package/templates/react/pages/templates/wrangler.jsonc +5 -0
  116. package/templates/react/workers/c3.ts +1 -1
  117. package/templates/react/workers/js/src/App.jsx +1 -1
  118. package/templates/react/workers/js/src/assets/Cloudflare_Logo.svg +7 -5
  119. package/templates/react/workers/js/{api → worker}/index.js +1 -1
  120. package/templates/react/workers/js/wrangler.jsonc +2 -2
  121. package/templates/react/workers/ts/src/App.tsx +1 -1
  122. package/templates/react/workers/ts/tsconfig.worker.json +2 -2
  123. package/templates/react/workers/ts/{api → worker}/index.ts +2 -3
  124. package/templates/react/workers/ts/wrangler.jsonc +2 -2
  125. package/templates/react-router/c3.ts +41 -0
  126. package/templates/remix/c3.ts +6 -63
  127. package/templates/remix/pages/c3.ts +70 -0
  128. package/{templates-experimental/remix → templates/remix/workers}/c3.ts +3 -2
  129. package/templates/remix/workers/templates/worker-configuration.d.ts +4 -0
  130. package/{templates-experimental/remix → templates/remix/workers}/templates/wrangler.toml +1 -1
  131. package/templates/scheduled/c3.ts +5 -1
  132. package/templates/scheduled/ts/src/index.ts +7 -0
  133. package/templates/scheduled/ts/tsconfig.json +0 -2
  134. package/templates/solid/c3.ts +1 -0
  135. package/templates/svelte/c3.ts +5 -154
  136. package/templates/svelte/pages/c3.ts +160 -0
  137. package/{templates-experimental/svelte → templates/svelte/workers}/c3.ts +6 -6
  138. package/templates/svelte/workers/templates/static/.assetsignore +2 -0
  139. package/templates/vue/pages/c3.ts +6 -3
  140. package/templates/vue/pages/templates/wrangler.jsonc +5 -0
  141. package/templates/vue/workers/js/server/index.js +2 -2
  142. package/templates/vue/workers/js/wrangler.jsonc +0 -1
  143. package/templates/vue/workers/ts/server/index.ts +2 -3
  144. package/templates/vue/workers/ts/tsconfig.worker.json +1 -1
  145. package/templates/vue/workers/ts/wrangler.jsonc +0 -1
  146. package/templates-experimental/solid/c3.ts +1 -1
  147. package/templates/analog/templates/worker-configuration.d.ts +0 -4
  148. package/templates/astro/templates/ts/worker-configuration.d.ts +0 -4
  149. package/templates/common/ts/worker-configuration.d.ts +0 -4
  150. package/templates/hello-world/ts/worker-configuration.d.ts +0 -4
  151. package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +0 -5
  152. package/templates/hono/snippets/appDeclaration.ts +0 -1
  153. package/templates/hono/templates/worker-configuration.d.ts +0 -4
  154. package/templates/next/env.d.ts +0 -5
  155. package/templates/nuxt/pages/templates/worker-configuration.d.ts +0 -4
  156. package/templates/nuxt/workers/templates/worker-configuration.d.ts +0 -4
  157. package/templates/openapi/ts/worker-configuration.d.ts +0 -4
  158. package/templates/queues/ts/worker-configuration.d.ts +0 -5
  159. package/templates/qwik/templates/worker-configuration.d.ts +0 -4
  160. package/templates/react/workers/ts/worker-configuration.d.ts +0 -5
  161. package/templates/remix/templates/worker-configuration.d.ts +0 -4
  162. package/templates/scheduled/ts/worker-configuration.d.ts +0 -4
  163. package/templates/vue/workers/ts/worker-configuration.d.ts +0 -6
  164. package/templates-experimental/astro/templates/ts/public/.assetsignore +0 -4
  165. package/templates-experimental/hello-world-durable-object-with-assets/ts/worker-configuration.d.ts +0 -5
  166. package/templates-experimental/hello-world-with-assets/c3.ts +0 -22
  167. package/templates-experimental/hello-world-with-assets/py/src/entry.py +0 -9
  168. package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +0 -8
  169. package/templates-experimental/hono/templates/worker-configuration.d.ts +0 -4
  170. package/templates-experimental/next/templates/cloudflare-env.d.ts +0 -5
  171. package/templates-experimental/next/templates/open-next.config.ts +0 -6
  172. package/templates-experimental/qwik/templates/public/.assetsignore +0 -4
  173. package/templates-experimental/svelte/templates/static/.assetsignore +0 -4
  174. /package/templates/astro/{templates → pages/templates}/js/wrangler.jsonc +0 -0
  175. /package/{templates-experimental/astro → templates/astro/pages}/templates/ts/src/env.d.ts +0 -0
  176. /package/{templates-experimental/astro → templates/astro/pages}/templates/ts/worker-configuration.d.ts +0 -0
  177. /package/templates/astro/{templates → pages/templates}/ts/wrangler.jsonc +0 -0
  178. /package/templates/astro/{templates → workers/templates}/ts/src/env.d.ts +0 -0
  179. /package/{templates-experimental → templates}/hello-world-assets-only/templates/package.json +0 -0
  180. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/.editorconfig +0 -0
  181. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/.prettierrc +0 -0
  182. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/__dot__gitignore +0 -0
  183. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/package.json +0 -0
  184. /package/{templates-experimental/hello-world-with-assets → templates/hello-world-durable-object-with-assets}/py/__dot__gitignore +0 -0
  185. /package/{templates-experimental/hello-world-with-assets → templates/hello-world-durable-object-with-assets}/py/package.json +0 -0
  186. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/.editorconfig +0 -0
  187. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/.prettierrc +0 -0
  188. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/__dot__gitignore +0 -0
  189. /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/package.json +0 -0
  190. /package/{templates-experimental → templates}/hello-world-with-assets/js/.editorconfig +0 -0
  191. /package/{templates-experimental → templates}/hello-world-with-assets/js/.prettierrc +0 -0
  192. /package/{templates-experimental → templates}/hello-world-with-assets/js/__dot__gitignore +0 -0
  193. /package/{templates-experimental → templates}/hello-world-with-assets/js/src/index.js +0 -0
  194. /package/{templates-experimental → templates}/hello-world-with-assets/js/test/index.spec.js +0 -0
  195. /package/{templates-experimental → templates}/hello-world-with-assets/js/vitest.config.js +0 -0
  196. /package/{templates-experimental → templates}/hello-world-with-assets/ts/.editorconfig +0 -0
  197. /package/{templates-experimental → templates}/hello-world-with-assets/ts/.prettierrc +0 -0
  198. /package/{templates-experimental → templates}/hello-world-with-assets/ts/__dot__gitignore +0 -0
  199. /package/{templates-experimental → templates}/hello-world-with-assets/ts/src/index.ts +0 -0
  200. /package/{templates-experimental → templates}/hello-world-with-assets/ts/test/index.spec.ts +0 -0
  201. /package/{templates-experimental → templates}/hello-world-with-assets/ts/vitest.config.mts +0 -0
  202. /package/{templates-experimental/hono → templates/hono/workers}/templates/public/index.html +0 -0
  203. /package/{templates-experimental/hono → templates/hono/workers}/templates/src/index.ts +0 -0
  204. /package/{templates-experimental/hono → templates/hono/workers}/templates/wrangler.jsonc +0 -0
  205. /package/templates/next/{README.md → pages/README.md} +0 -0
  206. /package/templates/next/{app → pages/app}/js/app/api/hello/route.js +0 -0
  207. /package/templates/next/{app → pages/app}/js/app/not-found.js +0 -0
  208. /package/templates/next/{app → pages/app}/ts/app/api/hello/route.ts +0 -0
  209. /package/templates/next/{app → pages/app}/ts/app/not-found.tsx +0 -0
  210. /package/templates/next/pages/{js → pages/js}/pages/api/hello.js +0 -0
  211. /package/templates/next/pages/{ts → pages/ts}/pages/api/hello.ts +0 -0
  212. /package/templates/next/{wrangler.jsonc → pages/wrangler.jsonc} +0 -0
  213. /package/{templates-experimental/next → templates/next/workers}/templates/.dev.vars +0 -0
  214. /package/{templates-experimental/next → templates/next/workers}/templates/__dot__gitignore +0 -0
  215. /package/{templates-experimental/qwik → templates/qwik/pages}/snippets/getPlatformProxy.ts +0 -0
  216. /package/{templates-experimental/hello-world-with-assets/ts → templates/qwik/pages/templates}/worker-configuration.d.ts +0 -0
  217. /package/templates/qwik/{templates → pages/templates}/wrangler.jsonc +0 -0
  218. /package/templates/qwik/{snippets → workers/snippets}/getPlatformProxy.ts +0 -0
  219. /package/{templates-experimental/astro/templates/js → templates/qwik/workers/templates}/public/.assetsignore +0 -0
  220. /package/{templates-experimental/qwik → templates/qwik/workers}/templates/worker-configuration.d.ts +0 -0
  221. /package/{templates-experimental/remix → templates/remix/pages}/templates/worker-configuration.d.ts +0 -0
  222. /package/templates/remix/{templates → pages/templates}/wrangler.jsonc +0 -0
  223. /package/{templates-experimental/remix → templates/remix/workers}/templates/public/.assetsignore +0 -0
  224. /package/templates/svelte/{templates → pages/templates}/wrangler.jsonc +0 -0
  225. /package/{templates-experimental/svelte → templates/svelte/workers}/templates/wrangler.jsonc +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "0.0.0-fd9dff833",
3
+ "version": "0.0.0-fdae3f766",
4
4
  "description": "A CLI for creating and deploying new applications to Cloudflare.",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -30,7 +30,7 @@
30
30
  "@babel/parser": "^7.21.3",
31
31
  "@babel/types": "^7.21.4",
32
32
  "@clack/prompts": "^0.6.3",
33
- "@cloudflare/workers-types": "^4.20250317.0",
33
+ "@cloudflare/workers-types": "^4.20250523.0",
34
34
  "@iarna/toml": "^3.0.0",
35
35
  "@types/command-exists": "^1.2.0",
36
36
  "@types/cross-spawn": "^6.0.2",
@@ -38,7 +38,7 @@
38
38
  "@types/degit": "^2.8.6",
39
39
  "@types/dns2": "^2.0.3",
40
40
  "@types/esprima": "^4.0.3",
41
- "@types/node": "^18.19.75",
41
+ "@types/node": "^20.17.32",
42
42
  "@types/semver": "^7.5.1",
43
43
  "@types/which-pm-runs": "^1.0.0",
44
44
  "@types/yargs": "^17.0.22",
@@ -52,7 +52,7 @@
52
52
  "degit": "^2.8.4",
53
53
  "dns2": "^2.1.0",
54
54
  "dotenv": "^16.0.0",
55
- "esbuild": "0.24.2",
55
+ "esbuild": "0.25.4",
56
56
  "execa": "^7.1.1",
57
57
  "glob": "^10.3.3",
58
58
  "haikunator": "^2.1.2",
@@ -65,17 +65,17 @@
65
65
  "undici": "^5.28.5",
66
66
  "vite": "^5.4.14",
67
67
  "vite-tsconfig-paths": "^4.0.8",
68
- "vitest": "~3.0.5",
68
+ "vitest": "~3.1.1",
69
69
  "which-pm-runs": "^1.1.0",
70
70
  "wrap-ansi": "^9.0.0",
71
71
  "xdg-app-paths": "^8.3.0",
72
72
  "yargs": "^17.7.2",
73
73
  "@cloudflare/cli": "1.1.1",
74
- "@cloudflare/eslint-config-worker": "1.1.0",
75
74
  "@cloudflare/mock-npm-registry": "0.0.0",
76
- "@cloudflare/vite-plugin": "0.0.0-fd9dff833",
75
+ "@cloudflare/vite-plugin": "0.0.0-fdae3f766",
77
76
  "@cloudflare/workers-tsconfig": "0.0.0",
78
- "wrangler": "0.0.0-fd9dff833"
77
+ "wrangler": "0.0.0-fdae3f766",
78
+ "@cloudflare/eslint-config-worker": "1.1.0"
79
79
  },
80
80
  "engines": {
81
81
  "node": ">=18.14.1"
@@ -3,8 +3,6 @@ import { brandColor, dim } from "@cloudflare/cli/colors";
3
3
  import { spinner } from "@cloudflare/cli/interactive";
4
4
  import { runFrameworkGenerator } from "frameworks/index";
5
5
  import { loadTemplateSnippets, transformFile } from "helpers/codemod";
6
- import { getLatestTypesEntrypoint } from "helpers/compatDate";
7
- import { readFile, writeFile } from "helpers/files";
8
6
  import { detectPackageManager } from "helpers/packageManagers";
9
7
  import { installPackages } from "helpers/packages";
10
8
  import * as recast from "recast";
@@ -40,28 +38,6 @@ const configure = async (ctx: C3Context) => {
40
38
  }
41
39
 
42
40
  updateViteConfig(ctx);
43
- updateEnvTypes(ctx);
44
- };
45
-
46
- const updateEnvTypes = (ctx: C3Context) => {
47
- const filepath = "env.d.ts";
48
-
49
- const s = spinner();
50
- s.start(`Updating ${filepath}`);
51
-
52
- let file = readFile(filepath);
53
-
54
- let typesEntrypoint = `@cloudflare/workers-types`;
55
- const latestEntrypoint = getLatestTypesEntrypoint(ctx);
56
- if (latestEntrypoint) {
57
- typesEntrypoint += `/${latestEntrypoint}`;
58
- }
59
-
60
- // Replace placeholder with actual types entrypoint
61
- file = file.replace("WORKERS_TYPES_ENTRYPOINT", typesEntrypoint);
62
- writeFile("env.d.ts", file);
63
-
64
- s.stop(`${brandColor(`updated`)} ${dim(`\`${filepath}\``)}`);
65
41
  };
66
42
 
67
43
  const updateViteConfig = (ctx: C3Context) => {
@@ -1,4 +1,4 @@
1
- /// <reference types="WORKERS_TYPES_ENTRYPOINT" />
1
+ /// <reference types="./worker-configuration.d.ts" />
2
2
 
3
3
  declare module "h3" {
4
4
  interface H3EventContext {
@@ -3,7 +3,6 @@ import { logRaw } from "@cloudflare/cli";
3
3
  import { brandColor, dim } from "@cloudflare/cli/colors";
4
4
  import { spinner } from "@cloudflare/cli/interactive";
5
5
  import { runFrameworkGenerator } from "frameworks/index";
6
- import { compatDateFlag } from "helpers/compatDate";
7
6
  import { readFile, readJSON, writeFile } from "helpers/files";
8
7
  import { detectPackageManager } from "helpers/packageManagers";
9
8
  import { installPackages } from "helpers/packages";
@@ -95,6 +94,7 @@ const config: TemplateConfig = {
95
94
  frameworkCli: "@angular/create",
96
95
  displayName: "Angular",
97
96
  platform: "pages",
97
+ hidden: true,
98
98
  copyFiles: {
99
99
  path: "./templates",
100
100
  },
@@ -106,10 +106,11 @@ const config: TemplateConfig = {
106
106
  configure,
107
107
  transformPackageJson: async () => ({
108
108
  scripts: {
109
- start: `${npm} run build && wrangler pages dev dist/cloudflare ${await compatDateFlag()}`,
109
+ start: `${npm} run build && wrangler pages dev`,
110
110
  build: `ng build && ${npm} run process`,
111
111
  process: "node ./tools/copy-files.mjs",
112
- deploy: `${npm} run build && wrangler pages deploy dist/cloudflare`,
112
+ deploy: `${npm} run build && wrangler pages deploy`,
113
+ "cf-typegen": `wrangler types`,
113
114
  },
114
115
  }),
115
116
  };
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "pages_build_output_dir": "./dist/cloudflare"
5
+ }
@@ -106,6 +106,7 @@ const config: TemplateConfig = {
106
106
  start: `${npm} run build && wrangler dev`,
107
107
  build: `ng build`,
108
108
  deploy: `${npm} run build && wrangler deploy`,
109
+ "cf-typegen": `wrangler types`,
109
110
  },
110
111
  }),
111
112
  };
@@ -1,97 +1,9 @@
1
- import { logRaw, updateStatus } from "@cloudflare/cli";
2
- import { blue, brandColor, dim } from "@cloudflare/cli/colors";
3
- import { runFrameworkGenerator } from "frameworks/index";
4
- import { transformFile } from "helpers/codemod";
5
- import { runCommand } from "helpers/command";
6
- import { usesTypescript } from "helpers/files";
7
- import { detectPackageManager } from "helpers/packageManagers";
8
- import * as recast from "recast";
9
- import type { TemplateConfig } from "../../src/templates";
10
- import type { C3Context, PackageJson } from "types";
1
+ import pages from "./pages/c3";
2
+ import workers from "./workers/c3";
3
+ import type { MultiPlatformTemplateConfig } from "../../src/templates";
11
4
 
12
- const { npx } = detectPackageManager();
13
-
14
- const generate = async (ctx: C3Context) => {
15
- await runFrameworkGenerator(ctx, [ctx.project.name, "--no-install"]);
16
-
17
- logRaw(""); // newline
18
- };
19
-
20
- const configure = async () => {
21
- await runCommand([npx, "astro", "add", "cloudflare", "-y"], {
22
- silent: true,
23
- startText: "Installing adapter",
24
- doneText: `${brandColor("installed")} ${dim(
25
- `via \`${npx} astro add cloudflare\``,
26
- )}`,
27
- });
28
-
29
- updateAstroConfig();
30
- };
31
-
32
- const updateAstroConfig = () => {
33
- const filePath = "astro.config.mjs";
34
-
35
- updateStatus(`Updating configuration in ${blue(filePath)}`);
36
-
37
- transformFile(filePath, {
38
- visitCallExpression: function (n) {
39
- const callee = n.node.callee as recast.types.namedTypes.Identifier;
40
- if (callee.name !== "cloudflare") {
41
- return this.traverse(n);
42
- }
43
-
44
- const b = recast.types.builders;
45
- n.node.arguments = [
46
- b.objectExpression([
47
- b.objectProperty(
48
- b.identifier("platformProxy"),
49
- b.objectExpression([
50
- b.objectProperty(b.identifier("enabled"), b.booleanLiteral(true)),
51
- ]),
52
- ),
53
- ]),
54
- ];
55
-
56
- return false;
57
- },
58
- });
59
- };
60
-
61
- const config: TemplateConfig = {
62
- configVersion: 1,
63
- id: "astro",
64
- frameworkCli: "create-astro",
65
- platform: "pages",
5
+ const config: MultiPlatformTemplateConfig = {
66
6
  displayName: "Astro",
67
- copyFiles: {
68
- async selectVariant(ctx) {
69
- // Note: this `selectVariant` function should not be needed
70
- // this is just a quick workaround until
71
- // https://github.com/cloudflare/workers-sdk/issues/7495
72
- // is resolved
73
- return usesTypescript(ctx) ? "ts" : "js";
74
- },
75
- variants: {
76
- js: {
77
- path: "./templates/js",
78
- },
79
- ts: {
80
- path: "./templates/ts",
81
- },
82
- },
83
- },
84
- devScript: "dev",
85
- deployScript: "deploy",
86
- previewScript: "preview",
87
- generate,
88
- configure,
89
- transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
90
- scripts: {
91
- deploy: `astro build && wrangler pages deploy`,
92
- preview: `astro build && wrangler pages dev`,
93
- ...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
94
- },
95
- }),
7
+ platformVariants: { pages, workers },
96
8
  };
97
9
  export default config;
@@ -0,0 +1,99 @@
1
+ import { logRaw, updateStatus } from "@cloudflare/cli";
2
+ import { blue, brandColor, dim } from "@cloudflare/cli/colors";
3
+ import { runFrameworkGenerator } from "frameworks/index";
4
+ import { transformFile } from "helpers/codemod";
5
+ import { runCommand } from "helpers/command";
6
+ import { usesTypescript } from "helpers/files";
7
+ import { detectPackageManager } from "helpers/packageManagers";
8
+ import * as recast from "recast";
9
+ import type { TemplateConfig } from "../../../src/templates";
10
+ import type { C3Context, PackageJson } from "types";
11
+
12
+ const { npx } = detectPackageManager();
13
+
14
+ const generate = async (ctx: C3Context) => {
15
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--no-install"]);
16
+
17
+ logRaw(""); // newline
18
+ };
19
+
20
+ const configure = async () => {
21
+ await runCommand([npx, "astro", "add", "cloudflare", "-y"], {
22
+ silent: true,
23
+ startText: "Installing adapter",
24
+ doneText: `${brandColor("installed")} ${dim(
25
+ `via \`${npx} astro add cloudflare\``,
26
+ )}`,
27
+ });
28
+
29
+ updateAstroConfig();
30
+ };
31
+
32
+ const updateAstroConfig = () => {
33
+ const filePath = "astro.config.mjs";
34
+
35
+ updateStatus(`Updating configuration in ${blue(filePath)}`);
36
+
37
+ transformFile(filePath, {
38
+ visitCallExpression: function (n) {
39
+ const callee = n.node.callee as recast.types.namedTypes.Identifier;
40
+ if (callee.name !== "cloudflare") {
41
+ return this.traverse(n);
42
+ }
43
+
44
+ const b = recast.types.builders;
45
+ n.node.arguments = [
46
+ b.objectExpression([
47
+ b.objectProperty(
48
+ b.identifier("platformProxy"),
49
+ b.objectExpression([
50
+ b.objectProperty(b.identifier("enabled"), b.booleanLiteral(true)),
51
+ ]),
52
+ ),
53
+ ]),
54
+ ];
55
+
56
+ return false;
57
+ },
58
+ });
59
+ };
60
+
61
+ const config: TemplateConfig = {
62
+ configVersion: 1,
63
+ id: "astro",
64
+ frameworkCli: "create-astro",
65
+ platform: "pages",
66
+ hidden: true,
67
+ displayName: "Astro",
68
+ path: "templates/astro/pages",
69
+ copyFiles: {
70
+ async selectVariant(ctx) {
71
+ // Note: this `selectVariant` function should not be needed
72
+ // this is just a quick workaround until
73
+ // https://github.com/cloudflare/workers-sdk/issues/7495
74
+ // is resolved
75
+ return usesTypescript(ctx) ? "ts" : "js";
76
+ },
77
+ variants: {
78
+ js: {
79
+ path: "./templates/js",
80
+ },
81
+ ts: {
82
+ path: "./templates/ts",
83
+ },
84
+ },
85
+ },
86
+ devScript: "dev",
87
+ deployScript: "deploy",
88
+ previewScript: "preview",
89
+ generate,
90
+ configure,
91
+ transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
92
+ scripts: {
93
+ deploy: `astro build && wrangler pages deploy`,
94
+ preview: `astro build && wrangler pages dev`,
95
+ ...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
96
+ },
97
+ }),
98
+ };
99
+ export default config;
@@ -6,7 +6,7 @@ import { runCommand } from "helpers/command";
6
6
  import { usesTypescript } from "helpers/files";
7
7
  import { detectPackageManager } from "helpers/packageManagers";
8
8
  import * as recast from "recast";
9
- import type { TemplateConfig } from "../../src/templates";
9
+ import type { TemplateConfig } from "../../../src/templates";
10
10
  import type { C3Context, PackageJson } from "types";
11
11
 
12
12
  const { npx } = detectPackageManager();
@@ -84,7 +84,7 @@ const config: TemplateConfig = {
84
84
  devScript: "dev",
85
85
  deployScript: "deploy",
86
86
  previewScript: "preview",
87
- path: "templates-experimental/astro",
87
+ path: "templates/astro/workers",
88
88
  generate,
89
89
  configure,
90
90
  transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
@@ -0,0 +1,2 @@
1
+ _worker.js
2
+ _routes.json
@@ -3,7 +3,8 @@
3
3
  "main": "./dist/_worker.js/index.js",
4
4
  "compatibility_date": "<TBD>",
5
5
  "compatibility_flags": [
6
- "nodejs_compat"
6
+ "nodejs_compat",
7
+ "global_fetch_strictly_public"
7
8
  ],
8
9
  "assets": {
9
10
  "binding": "ASSETS",
@@ -0,0 +1,2 @@
1
+ _worker.js
2
+ _routes.json
@@ -3,7 +3,8 @@
3
3
  "main": "./dist/_worker.js/index.js",
4
4
  "compatibility_date": "<TBD>",
5
5
  "compatibility_flags": [
6
- "nodejs_compat"
6
+ "nodejs_compat",
7
+ "global_fetch_strictly_public"
7
8
  ],
8
9
  "assets": {
9
10
  "binding": "ASSETS",
@@ -11,5 +12,5 @@
11
12
  },
12
13
  "observability": {
13
14
  "enabled": true
14
- }
15
+ },
15
16
  }
@@ -1,4 +1,6 @@
1
- export default {
1
+ import type { TemplateConfig } from "../../src/templates";
2
+
3
+ const config: TemplateConfig = {
2
4
  configVersion: 1,
3
5
  id: "common",
4
6
  displayName: "Example router & proxy Worker",
@@ -17,3 +19,5 @@ export default {
17
19
  },
18
20
  },
19
21
  };
22
+
23
+ export default config;
@@ -16,9 +16,6 @@
16
16
  /* Enable importing .json files */
17
17
  "resolveJsonModule": true,
18
18
 
19
- /* Specify type package names to be included without being referenced in a source file. */
20
- "types": ["@cloudflare/workers-types"],
21
-
22
19
  /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
23
20
  "allowJs": true,
24
21
  /* Enable error reporting in type-checked JavaScript files. */
@@ -14,6 +14,7 @@ const config: TemplateConfig = {
14
14
  id: "docusaurus",
15
15
  frameworkCli: "create-docusaurus",
16
16
  platform: "pages",
17
+ hidden: true,
17
18
  displayName: "Docusaurus",
18
19
  path: "templates/docusaurus/pages",
19
20
  generate,
@@ -26,5 +27,6 @@ const config: TemplateConfig = {
26
27
  devScript: "preview",
27
28
  deployScript: "deploy",
28
29
  previewScript: "preview",
30
+ workersTypes: "none",
29
31
  };
30
32
  export default config;
@@ -29,5 +29,6 @@ const config: TemplateConfig = {
29
29
  devScript: "start",
30
30
  deployScript: "deploy",
31
31
  previewScript: "preview",
32
+ workersTypes: "none",
32
33
  };
33
34
  export default config;
@@ -34,6 +34,7 @@ const config: TemplateConfig = {
34
34
  id: "gatsby",
35
35
  frameworkCli: "gatsby",
36
36
  platform: "pages",
37
+ hidden: true,
37
38
  displayName: "Gatsby",
38
39
  path: "templates/gatsby/pages",
39
40
  generate,
@@ -46,5 +47,6 @@ const config: TemplateConfig = {
46
47
  devScript: "develop",
47
48
  deployScript: "deploy",
48
49
  previewScript: "preview",
50
+ workersTypes: "none",
49
51
  };
50
52
  export default config;
@@ -49,5 +49,6 @@ const config: TemplateConfig = {
49
49
  devScript: "develop",
50
50
  deployScript: "deploy",
51
51
  previewScript: "preview",
52
+ workersTypes: "none",
52
53
  };
53
54
  export default config;
@@ -5,8 +5,9 @@ import type { TemplateConfig } from "../../src/templates";
5
5
  export default {
6
6
  configVersion: 1,
7
7
  id: "hello-world",
8
- displayName: "Hello World Worker",
9
- description: "Get started with a basic Worker in the language of your choice",
8
+ displayName: "Worker only",
9
+ description:
10
+ "For processing requests, transforming responses, or API endpoints",
10
11
  platform: "workers",
11
12
  async configure(ctx) {
12
13
  if (ctx.args.lang === "python") {
@@ -9,7 +9,7 @@
9
9
  "test": "vitest"
10
10
  },
11
11
  "devDependencies": {
12
- "@cloudflare/vitest-pool-workers": "^0.7.5",
12
+ "@cloudflare/vitest-pool-workers": "^0.8.19",
13
13
  "wrangler": "^3.101.0",
14
14
  "vitest": "~3.0.7"
15
15
  }
@@ -1,8 +1,8 @@
1
1
  ## Usage
2
2
 
3
- You can run the worker defined by your new project by executing `wrangler dev` in this
3
+ You can run the Worker defined by your new project by executing `wrangler dev` in this
4
4
  directory. This will start up an HTTP server and will allow you to iterate on your
5
- worker without having to restart `wrangler`.
5
+ Worker without having to restart `wrangler`.
6
6
 
7
7
  ### Types and autocomplete
8
8
 
@@ -6,4 +6,4 @@ readme = "README.md"
6
6
  requires-python = ">=3.12"
7
7
  dependencies = [
8
8
  "webtypy>=0.1.7",
9
- ]
9
+ ]
@@ -1,4 +1,5 @@
1
- from js import Response
1
+ from workers import Response, handler
2
2
 
3
+ @handler
3
4
  async def on_fetch(request, env):
4
- return Response.new("Hello World!")
5
+ return Response("Hello World!")
@@ -10,7 +10,7 @@
10
10
  "cf-typegen": "wrangler types"
11
11
  },
12
12
  "devDependencies": {
13
- "@cloudflare/vitest-pool-workers": "^0.7.5",
13
+ "@cloudflare/vitest-pool-workers": "^0.8.19",
14
14
  "typescript": "^5.5.2",
15
15
  "vitest": "~3.0.7",
16
16
  "wrangler": "^3.101.0"
@@ -0,0 +1,3 @@
1
+ declare module 'cloudflare:test' {
2
+ interface ProvidedEnv extends Env {}
3
+ }
@@ -1,4 +1,3 @@
1
- // test/index.spec.ts
2
1
  import { env, createExecutionContext, waitOnExecutionContext, SELF } from 'cloudflare:test';
3
2
  import { describe, it, expect } from 'vitest';
4
3
  import worker from '../src/index';
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "extends": "../tsconfig.json",
3
3
  "compilerOptions": {
4
- "types": ["@cloudflare/workers-types/experimental", "@cloudflare/vitest-pool-workers"]
4
+ "types": ["@cloudflare/vitest-pool-workers"]
5
5
  },
6
6
  "include": ["./**/*.ts", "../worker-configuration.d.ts"],
7
7
  "exclude": []
@@ -13,8 +13,6 @@
13
13
  "module": "es2022",
14
14
  /* Specify how TypeScript looks up a file from a given module specifier. */
15
15
  "moduleResolution": "Bundler",
16
- /* Specify type package names to be included without being referenced in a source file. */
17
- "types": ["@cloudflare/workers-types"],
18
16
  /* Enable importing .json files */
19
17
  "resolveJsonModule": true,
20
18
 
@@ -3,9 +3,10 @@ import type { TemplateConfig } from "../../src/templates";
3
3
  const config: TemplateConfig = {
4
4
  configVersion: 1,
5
5
  id: "hello-world-assets-only",
6
- path: "templates-experimental/hello-world-assets-only",
7
- displayName: "Hello World - Assets-only",
8
- description: "Get started with a basic Worker that only serves static assets",
6
+ path: "templates/hello-world-assets-only",
7
+ displayName: "Static site",
8
+ description:
9
+ "For static sites or when using your own backend. Uses Workers Static Assets.",
9
10
  platform: "workers",
10
11
  copyFiles: {
11
12
  path: "./templates",
@@ -7,5 +7,6 @@
7
7
  </head>
8
8
  <body>
9
9
  <h1 id="heading">Hello, World!</h1>
10
+ <p>This page comes from a static asset stored at `public/index.html` as configured in `wrangler.jsonc`.</p>
10
11
  </body>
11
12
  </html>
@@ -2,6 +2,7 @@
2
2
  "name": "<TBD>",
3
3
  "compatibility_date": "<TBD>",
4
4
  "assets": {
5
+ // The path to the directory containing the `index.html` file to be served at `/`
5
6
  "directory": "./public"
6
7
  },
7
8
  "observability": {
@@ -1,9 +1,11 @@
1
- export default {
1
+ import type { TemplateConfig } from "../../src/templates";
2
+
3
+ const config: TemplateConfig = {
2
4
  configVersion: 1,
3
5
  id: "hello-world-durable-object",
4
- displayName: "Hello World Worker Using Durable Objects",
6
+ displayName: "Worker + Durable Objects",
5
7
  description:
6
- "Get started with a basic stateful app to build projects like real-time chats, collaborative apps, and multiplayer games",
8
+ "For multiplayer apps using WebSockets, or when you need synchronization",
7
9
  platform: "workers",
8
10
  copyFiles: {
9
11
  variants: {
@@ -13,6 +15,10 @@ export default {
13
15
  ts: {
14
16
  path: "./ts",
15
17
  },
18
+ python: {
19
+ path: "./py",
20
+ },
16
21
  },
17
22
  },
18
23
  };
24
+ export default config;