create-cloudflare 0.0.0-e3a57616 → 0.0.0-e3efd68e3

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 (276) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.js +51869 -48939
  3. package/dist/tsconfig.tsbuildinfo +1 -0
  4. package/package.json +40 -30
  5. package/templates/analog/c3.ts +135 -0
  6. package/templates/analog/snippets/devBindingsModule.ts +7 -0
  7. package/templates/analog/templates/env.d.ts +13 -0
  8. package/templates/analog/templates/src/dev-bindings.ts +18 -0
  9. package/templates/analog/templates/worker-configuration.d.ts +4 -0
  10. package/templates/analog/templates/wrangler.jsonc +5 -0
  11. package/templates/angular/c3.ts +62 -29
  12. package/templates/angular/templates/src/server.ts +15 -0
  13. package/templates/angular/templates/tools/copy-files.mjs +8 -2
  14. package/templates/astro/c3.ts +67 -20
  15. package/templates/astro/templates/js/wrangler.jsonc +8 -0
  16. package/templates/astro/templates/ts/src/env.d.ts +5 -0
  17. package/templates/astro/templates/ts/worker-configuration.d.ts +4 -0
  18. package/templates/astro/templates/ts/wrangler.jsonc +8 -0
  19. package/templates/common/c3.ts +10 -6
  20. package/templates/common/js/.editorconfig +0 -1
  21. package/templates/common/js/package.json +1 -1
  22. package/templates/common/js/wrangler.jsonc +8 -0
  23. package/templates/common/ts/.editorconfig +0 -1
  24. package/templates/common/ts/package.json +4 -3
  25. package/templates/common/ts/src/ab-test.ts +2 -2
  26. package/templates/common/ts/src/index.ts +5 -2
  27. package/templates/common/ts/src/proxy.ts +2 -2
  28. package/templates/common/ts/src/redirect.ts +2 -2
  29. package/templates/common/ts/tsconfig.json +37 -95
  30. package/templates/common/ts/worker-configuration.d.ts +2 -14
  31. package/templates/common/ts/wrangler.jsonc +8 -0
  32. package/templates/docusaurus/c3.ts +5 -23
  33. package/templates/docusaurus/pages/c3.ts +30 -0
  34. package/templates/docusaurus/workers/c3.ts +33 -0
  35. package/templates/docusaurus/workers/templates/wrangler.jsonc +10 -0
  36. package/templates/gatsby/c3.ts +8 -5
  37. package/templates/hello-world/c3.ts +29 -8
  38. package/templates/hello-world/js/.editorconfig +0 -1
  39. package/templates/hello-world/js/package.json +5 -2
  40. package/templates/hello-world/js/test/index.spec.js +20 -0
  41. package/templates/hello-world/js/vitest.config.js +11 -0
  42. package/templates/hello-world/js/wrangler.jsonc +8 -0
  43. package/templates/hello-world/py/.python-version +1 -0
  44. package/templates/hello-world/py/README.md +23 -0
  45. package/templates/hello-world/py/__dot__gitignore +68 -0
  46. package/templates/hello-world/py/package.json +13 -0
  47. package/templates/hello-world/py/pyproject.toml +9 -0
  48. package/templates/hello-world/py/src/entry.py +4 -0
  49. package/templates/hello-world/py/uv.lock +22 -0
  50. package/templates/hello-world/py/wrangler.jsonc +9 -0
  51. package/templates/hello-world/ts/.editorconfig +0 -1
  52. package/templates/hello-world/ts/package.json +7 -3
  53. package/templates/hello-world/ts/src/index.ts +5 -19
  54. package/templates/hello-world/ts/test/index.spec.ts +25 -0
  55. package/templates/hello-world/ts/test/tsconfig.json +8 -0
  56. package/templates/hello-world/ts/tsconfig.json +39 -96
  57. package/templates/hello-world/ts/vitest.config.mts +11 -0
  58. package/templates/hello-world/ts/worker-configuration.d.ts +4 -0
  59. package/templates/hello-world/ts/wrangler.jsonc +8 -0
  60. package/templates/hello-world-durable-object/c3.ts +10 -7
  61. package/templates/hello-world-durable-object/js/.editorconfig +0 -1
  62. package/templates/hello-world-durable-object/js/package.json +1 -1
  63. package/templates/hello-world-durable-object/js/src/index.js +21 -17
  64. package/templates/hello-world-durable-object/js/wrangler.jsonc +24 -0
  65. package/templates/hello-world-durable-object/ts/.editorconfig +0 -1
  66. package/templates/hello-world-durable-object/ts/package.json +4 -4
  67. package/templates/hello-world-durable-object/ts/src/index.ts +26 -39
  68. package/templates/hello-world-durable-object/ts/tsconfig.json +36 -95
  69. package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +5 -0
  70. package/templates/hello-world-durable-object/ts/wrangler.jsonc +24 -0
  71. package/templates/hono/c3.ts +48 -3
  72. package/templates/hono/snippets/appDeclaration.ts +1 -0
  73. package/templates/hono/templates/worker-configuration.d.ts +4 -0
  74. package/templates/hono/templates/wrangler.jsonc +8 -0
  75. package/templates/next/README.md +67 -0
  76. package/templates/next/app/js/app/api/hello/route.js +21 -0
  77. package/templates/next/app/js/app/not-found.js +58 -0
  78. package/templates/next/app/ts/app/api/hello/route.ts +21 -0
  79. package/templates/next/app/ts/app/not-found.tsx +58 -0
  80. package/templates/next/c3.ts +96 -84
  81. package/templates/next/env.d.ts +5 -0
  82. package/templates/next/pages/js/pages/api/hello.js +23 -0
  83. package/templates/next/pages/ts/pages/api/hello.ts +24 -0
  84. package/templates/next/wrangler.jsonc +8 -0
  85. package/templates/nuxt/c3.ts +94 -19
  86. package/templates/nuxt/templates/env.d.ts +14 -0
  87. package/templates/nuxt/templates/worker-configuration.d.ts +4 -0
  88. package/templates/nuxt/templates/wrangler.jsonc +8 -0
  89. package/templates/openapi/c3.ts +1 -1
  90. package/templates/openapi/ts/README.md +3 -3
  91. package/templates/openapi/ts/package.json +7 -4
  92. package/templates/openapi/ts/src/endpoints/taskCreate.ts +26 -16
  93. package/templates/openapi/ts/src/endpoints/taskDelete.ts +20 -19
  94. package/templates/openapi/ts/src/endpoints/taskFetch.ts +30 -23
  95. package/templates/openapi/ts/src/endpoints/taskList.ts +27 -24
  96. package/templates/openapi/ts/src/index.ts +14 -20
  97. package/templates/openapi/ts/src/types.ts +9 -8
  98. package/templates/openapi/ts/worker-configuration.d.ts +4 -0
  99. package/templates/openapi/ts/wrangler.jsonc +8 -0
  100. package/templates/pre-existing/c3.ts +39 -22
  101. package/templates/pre-existing/js/.editorconfig +0 -1
  102. package/templates/pre-existing/js/package.json +1 -1
  103. package/templates/queues/c3.ts +9 -6
  104. package/templates/queues/js/.editorconfig +0 -1
  105. package/templates/queues/js/package.json +1 -1
  106. package/templates/queues/js/wrangler.jsonc +21 -0
  107. package/templates/queues/ts/.editorconfig +0 -1
  108. package/templates/queues/ts/package.json +4 -3
  109. package/templates/queues/ts/src/index.ts +6 -8
  110. package/templates/queues/ts/tsconfig.json +36 -95
  111. package/templates/queues/ts/worker-configuration.d.ts +5 -0
  112. package/templates/queues/ts/wrangler.jsonc +21 -0
  113. package/templates/qwik/c3.ts +121 -9
  114. package/templates/qwik/snippets/getPlatformProxy.ts +6 -0
  115. package/templates/qwik/templates/worker-configuration.d.ts +4 -0
  116. package/templates/qwik/templates/wrangler.jsonc +8 -0
  117. package/templates/react/c3.ts +5 -25
  118. package/templates/react/pages/c3.ts +62 -0
  119. package/templates/react/workers/c3.ts +183 -0
  120. package/templates/react/workers/js/api/index.js +13 -0
  121. package/templates/react/workers/js/src/App.jsx +58 -0
  122. package/templates/react/workers/js/src/assets/Cloudflare_Logo.svg +26 -0
  123. package/templates/react/workers/js/wrangler.jsonc +9 -0
  124. package/templates/react/workers/ts/api/index.ts +13 -0
  125. package/templates/react/workers/ts/src/App.tsx +58 -0
  126. package/templates/react/workers/ts/src/assets/Cloudflare_Logo.svg +26 -0
  127. package/templates/react/workers/ts/tsconfig.worker.json +8 -0
  128. package/templates/react/workers/ts/worker-configuration.d.ts +5 -0
  129. package/templates/react/workers/ts/wrangler.jsonc +9 -0
  130. package/templates/remix/c3.ts +41 -7
  131. package/templates/remix/templates/worker-configuration.d.ts +4 -0
  132. package/templates/remix/templates/wrangler.jsonc +5 -0
  133. package/templates/scheduled/c3.ts +9 -6
  134. package/templates/scheduled/js/.editorconfig +0 -1
  135. package/templates/scheduled/js/package.json +3 -3
  136. package/templates/scheduled/js/src/index.js +9 -2
  137. package/templates/scheduled/js/wrangler.jsonc +13 -0
  138. package/templates/scheduled/ts/.editorconfig +0 -1
  139. package/templates/scheduled/ts/package.json +5 -4
  140. package/templates/scheduled/ts/src/index.ts +8 -25
  141. package/templates/scheduled/ts/tsconfig.json +36 -95
  142. package/templates/scheduled/ts/worker-configuration.d.ts +4 -0
  143. package/templates/scheduled/ts/wrangler.jsonc +13 -0
  144. package/templates/solid/c3.ts +57 -18
  145. package/templates/solid/templates/wrangler.jsonc +8 -0
  146. package/templates/svelte/c3.ts +112 -29
  147. package/templates/svelte/templates/wrangler.jsonc +5 -0
  148. package/templates/vue/c3.ts +8 -6
  149. package/templates-experimental/angular/c3.ts +130 -0
  150. package/templates-experimental/angular/templates/src/server.ts +15 -0
  151. package/templates-experimental/angular/templates/wrangler.jsonc +12 -0
  152. package/templates-experimental/astro/c3.ts +98 -0
  153. package/templates-experimental/astro/templates/js/public/.assetsignore +4 -0
  154. package/templates-experimental/astro/templates/js/wrangler.jsonc +15 -0
  155. package/templates-experimental/astro/templates/ts/public/.assetsignore +4 -0
  156. package/templates-experimental/astro/templates/ts/src/env.d.ts +5 -0
  157. package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +4 -0
  158. package/templates-experimental/astro/templates/ts/wrangler.jsonc +15 -0
  159. package/templates-experimental/gatsby/c3.ts +53 -0
  160. package/templates-experimental/gatsby/templates/wrangler.jsonc +10 -0
  161. package/templates-experimental/hello-world-assets-only/c3.ts +15 -0
  162. package/templates-experimental/hello-world-assets-only/templates/package.json +13 -0
  163. package/templates-experimental/hello-world-assets-only/templates/public/index.html +11 -0
  164. package/templates-experimental/hello-world-assets-only/templates/wrangler.jsonc +10 -0
  165. package/templates-experimental/hello-world-durable-object-with-assets/c3.ts +23 -0
  166. package/templates-experimental/hello-world-durable-object-with-assets/js/.editorconfig +12 -0
  167. package/templates-experimental/hello-world-durable-object-with-assets/js/.prettierrc +6 -0
  168. package/{templates/chatgptPlugin/ts → templates-experimental/hello-world-durable-object-with-assets/js}/__dot__gitignore +1 -0
  169. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +13 -0
  170. package/templates-experimental/hello-world-durable-object-with-assets/js/public/index.html +19 -0
  171. package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +69 -0
  172. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.jsonc +28 -0
  173. package/templates-experimental/hello-world-durable-object-with-assets/ts/.editorconfig +12 -0
  174. package/templates-experimental/hello-world-durable-object-with-assets/ts/.prettierrc +6 -0
  175. package/templates-experimental/hello-world-durable-object-with-assets/ts/__dot__gitignore +172 -0
  176. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +15 -0
  177. package/templates-experimental/hello-world-durable-object-with-assets/ts/public/index.html +19 -0
  178. package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +66 -0
  179. package/templates-experimental/hello-world-durable-object-with-assets/ts/tsconfig.json +42 -0
  180. package/templates-experimental/hello-world-durable-object-with-assets/ts/worker-configuration.d.ts +5 -0
  181. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.jsonc +28 -0
  182. package/templates-experimental/hello-world-with-assets/c3.ts +22 -0
  183. package/templates-experimental/hello-world-with-assets/js/.editorconfig +12 -0
  184. package/templates-experimental/hello-world-with-assets/js/.prettierrc +6 -0
  185. package/templates-experimental/hello-world-with-assets/js/__dot__gitignore +172 -0
  186. package/templates-experimental/hello-world-with-assets/js/package.json +16 -0
  187. package/templates-experimental/hello-world-with-assets/js/public/index.html +31 -0
  188. package/templates-experimental/hello-world-with-assets/js/src/index.js +23 -0
  189. package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +41 -0
  190. package/templates-experimental/hello-world-with-assets/js/vitest.config.js +11 -0
  191. package/templates-experimental/hello-world-with-assets/js/wrangler.jsonc +15 -0
  192. package/templates-experimental/hello-world-with-assets/py/__dot__gitignore +68 -0
  193. package/templates-experimental/hello-world-with-assets/py/package.json +13 -0
  194. package/templates-experimental/hello-world-with-assets/py/public/index.html +31 -0
  195. package/templates-experimental/hello-world-with-assets/py/src/entry.py +9 -0
  196. package/templates-experimental/hello-world-with-assets/py/wrangler.jsonc +15 -0
  197. package/templates-experimental/hello-world-with-assets/ts/.editorconfig +12 -0
  198. package/templates-experimental/hello-world-with-assets/ts/.prettierrc +6 -0
  199. package/templates-experimental/hello-world-with-assets/ts/__dot__gitignore +172 -0
  200. package/templates-experimental/hello-world-with-assets/ts/package.json +18 -0
  201. package/templates-experimental/hello-world-with-assets/ts/public/index.html +31 -0
  202. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +26 -0
  203. package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +41 -0
  204. package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +8 -0
  205. package/templates-experimental/hello-world-with-assets/ts/tsconfig.json +44 -0
  206. package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +11 -0
  207. package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +4 -0
  208. package/templates-experimental/hello-world-with-assets/ts/wrangler.jsonc +15 -0
  209. package/templates-experimental/hono/c3.ts +44 -0
  210. package/templates-experimental/hono/templates/public/index.html +19 -0
  211. package/templates-experimental/hono/templates/src/index.ts +9 -0
  212. package/templates-experimental/hono/templates/worker-configuration.d.ts +4 -0
  213. package/templates-experimental/hono/templates/wrangler.jsonc +9 -0
  214. package/templates-experimental/next/c3.ts +75 -0
  215. package/templates-experimental/next/templates/.dev.vars +2 -0
  216. package/templates-experimental/next/templates/__dot__gitignore +39 -0
  217. package/templates-experimental/next/templates/cloudflare-env.d.ts +5 -0
  218. package/templates-experimental/next/templates/open-next.config.ts +28 -0
  219. package/templates-experimental/next/templates/wrangler.jsonc +13 -0
  220. package/templates-experimental/nuxt/c3.ts +135 -0
  221. package/templates-experimental/nuxt/templates/env.d.ts +14 -0
  222. package/templates-experimental/nuxt/templates/worker-configuration.d.ts +4 -0
  223. package/templates-experimental/nuxt/templates/wrangler.jsonc +12 -0
  224. package/templates-experimental/qwik/c3.ts +154 -0
  225. package/templates-experimental/qwik/snippets/getPlatformProxy.ts +6 -0
  226. package/templates-experimental/qwik/templates/public/.assetsignore +4 -0
  227. package/templates-experimental/qwik/templates/worker-configuration.d.ts +4 -0
  228. package/templates-experimental/qwik/templates/wrangler.jsonc +15 -0
  229. package/templates-experimental/remix/c3.ts +52 -0
  230. package/templates-experimental/remix/templates/public/.assetsignore +0 -0
  231. package/templates-experimental/remix/templates/worker-configuration.d.ts +4 -0
  232. package/templates-experimental/remix/templates/wrangler.toml +11 -0
  233. package/templates-experimental/solid/c3.ts +94 -0
  234. package/templates-experimental/solid/templates/wrangler.jsonc +15 -0
  235. package/templates-experimental/svelte/c3.ts +129 -0
  236. package/templates-experimental/svelte/templates/static/.assetsignore +4 -0
  237. package/templates-experimental/svelte/templates/wrangler.jsonc +12 -0
  238. package/templates-experimental/vue/c3.ts +98 -0
  239. package/templates-experimental/vue/js/server/index.js +13 -0
  240. package/templates-experimental/vue/js/src/App.vue +107 -0
  241. package/templates-experimental/vue/js/src/components/HelloWorld.vue +47 -0
  242. package/templates-experimental/vue/js/vite.config.js +21 -0
  243. package/templates-experimental/vue/js/wrangler.jsonc +12 -0
  244. package/templates-experimental/vue/ts/server/index.ts +13 -0
  245. package/templates-experimental/vue/ts/src/App.vue +107 -0
  246. package/templates-experimental/vue/ts/src/components/HelloWorld.vue +44 -0
  247. package/templates-experimental/vue/ts/tsconfig.worker.json +8 -0
  248. package/templates-experimental/vue/ts/vite.config.ts +21 -0
  249. package/templates-experimental/vue/ts/worker-configuration.d.ts +6 -0
  250. package/templates-experimental/vue/ts/wrangler.jsonc +12 -0
  251. package/templates/angular/templates/server.ts +0 -34
  252. package/templates/angular/templates/tools/alter-polyfills.mjs +0 -27
  253. package/templates/angular/templates/tools/paths.mjs +0 -9
  254. package/templates/chatgptPlugin/c3.ts +0 -10
  255. package/templates/chatgptPlugin/ts/.assets/example.png +0 -0
  256. package/templates/chatgptPlugin/ts/README.md +0 -25
  257. package/templates/chatgptPlugin/ts/package.json +0 -16
  258. package/templates/chatgptPlugin/ts/src/index.ts +0 -33
  259. package/templates/chatgptPlugin/ts/src/search.ts +0 -59
  260. package/templates/chatgptPlugin/ts/wrangler.toml +0 -3
  261. package/templates/common/js/wrangler.toml +0 -51
  262. package/templates/common/ts/wrangler.toml +0 -51
  263. package/templates/hello-world/js/wrangler.toml +0 -51
  264. package/templates/hello-world/ts/wrangler.toml +0 -51
  265. package/templates/hello-world-durable-object/js/wrangler.toml +0 -51
  266. package/templates/hello-world-durable-object/ts/wrangler.toml +0 -51
  267. package/templates/next/templates.ts +0 -281
  268. package/templates/openapi/ts/wrangler.toml +0 -3
  269. package/templates/pre-existing/js/wrangler.toml +0 -3
  270. package/templates/queues/js/wrangler.toml +0 -19
  271. package/templates/queues/ts/wrangler.toml +0 -19
  272. package/templates/scheduled/js/wrangler.toml +0 -9
  273. package/templates/scheduled/ts/wrangler.toml +0 -9
  274. package/templates/solid/js/vite.config.js +0 -7
  275. package/templates/solid/ts/vite.config.ts +0 -7
  276. package/templates/svelte/templates.ts +0 -13
@@ -0,0 +1,62 @@
1
+ import { logRaw } from "@cloudflare/cli";
2
+ import { inputPrompt } from "@cloudflare/cli/interactive";
3
+ import { runFrameworkGenerator } from "frameworks/index";
4
+ import { detectPackageManager } from "helpers/packageManagers";
5
+ import type { TemplateConfig } from "../../../src/templates";
6
+ import type { C3Context } from "types";
7
+
8
+ const { npm } = detectPackageManager();
9
+
10
+ const generate = async (ctx: C3Context) => {
11
+ const variant = await inputPrompt({
12
+ type: "select",
13
+ question: "Select a variant:",
14
+ label: "variant",
15
+ options: variantsOptions,
16
+ defaultValue: variantsOptions[0].value,
17
+ });
18
+
19
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--template", variant]);
20
+
21
+ logRaw("");
22
+ };
23
+
24
+ const variantsOptions = [
25
+ {
26
+ value: "react-ts",
27
+ label: "TypeScript",
28
+ },
29
+ {
30
+ value: "react-swc-ts",
31
+ label: "TypeScript + SWC",
32
+ },
33
+ {
34
+ value: "react",
35
+ label: "JavaScript",
36
+ },
37
+ {
38
+ value: "react-swc",
39
+ label: "JavaScript + SWC",
40
+ },
41
+ ];
42
+
43
+ const config: TemplateConfig = {
44
+ configVersion: 1,
45
+ id: "react",
46
+ // React's documentation now recommends using create-vite.
47
+ frameworkCli: "create-vite",
48
+ displayName: "React",
49
+ platform: "pages",
50
+ path: "templates/react/pages",
51
+ generate,
52
+ transformPackageJson: async () => ({
53
+ scripts: {
54
+ deploy: `${npm} run build && wrangler pages deploy ./dist`,
55
+ preview: `${npm} run build && wrangler pages dev ./dist`,
56
+ },
57
+ }),
58
+ devScript: "dev",
59
+ deployScript: "deploy",
60
+ previewScript: "preview",
61
+ };
62
+ export default config;
@@ -0,0 +1,183 @@
1
+ import assert from "assert";
2
+ import { logRaw } from "@cloudflare/cli";
3
+ import { brandColor, dim } from "@cloudflare/cli/colors";
4
+ import { inputPrompt, spinner } from "@cloudflare/cli/interactive";
5
+ import { runFrameworkGenerator } from "frameworks/index";
6
+ import { transformFile } from "helpers/codemod";
7
+ import { readJSON, usesTypescript, writeJSON } from "helpers/files";
8
+ import { detectPackageManager } from "helpers/packageManagers";
9
+ import { installPackages } from "helpers/packages";
10
+ import * as recast from "recast";
11
+ import type { TemplateConfig } from "../../../src/templates";
12
+ import type { types } from "recast";
13
+ import type { C3Context } from "types";
14
+
15
+ const b = recast.types.builders;
16
+ const t = recast.types.namedTypes;
17
+ const { npm } = detectPackageManager();
18
+
19
+ const generate = async (ctx: C3Context) => {
20
+ const variant = await getVariant();
21
+ ctx.args.lang = variant.lang;
22
+
23
+ await runFrameworkGenerator(ctx, [
24
+ ctx.project.name,
25
+ "--template",
26
+ variant.value,
27
+ ]);
28
+
29
+ logRaw("");
30
+ };
31
+
32
+ const configure = async (ctx: C3Context) => {
33
+ await installPackages(["@cloudflare/vite-plugin"], {
34
+ dev: true,
35
+ startText: "Installing the Cloudflare Vite plugin",
36
+ doneText: `${brandColor(`installed`)} ${dim("@cloudflare/vite-plugin")}`,
37
+ });
38
+
39
+ await transformViteConfig(ctx);
40
+
41
+ if (usesTypescript(ctx)) {
42
+ updateTsconfigJson();
43
+ }
44
+ };
45
+
46
+ function transformViteConfig(ctx: C3Context) {
47
+ const filePath = `vite.config.${usesTypescript(ctx) ? "ts" : "js"}`;
48
+
49
+ transformFile(filePath, {
50
+ visitProgram(n) {
51
+ // Add an import of the @cloudflare/vite-plugin
52
+ // ```
53
+ // import {cloudflare} from "@cloudflare/vite-plugin";
54
+ // ```
55
+ const lastImportIndex = n.node.body.findLastIndex(
56
+ (statement) => statement.type === "ImportDeclaration",
57
+ );
58
+ const lastImport = n.get("body", lastImportIndex);
59
+ const importAst = b.importDeclaration(
60
+ [b.importSpecifier(b.identifier("cloudflare"))],
61
+ b.stringLiteral("@cloudflare/vite-plugin"),
62
+ );
63
+ lastImport.insertAfter(importAst);
64
+
65
+ return this.traverse(n);
66
+ },
67
+ visitCallExpression: function (n) {
68
+ // Add the imported plugin to the config
69
+ // ```
70
+ // defineConfig({
71
+ // plugins: [react(), cloudflare()],
72
+ // });
73
+ const callee = n.node.callee as types.namedTypes.Identifier;
74
+ if (callee.name !== "defineConfig") {
75
+ return this.traverse(n);
76
+ }
77
+
78
+ const config = n.node.arguments[0];
79
+ assert(t.ObjectExpression.check(config));
80
+ const pluginsProp = config.properties.find((prop) => isPluginsProp(prop));
81
+ assert(pluginsProp && t.ArrayExpression.check(pluginsProp.value));
82
+ pluginsProp.value.elements.push(
83
+ b.callExpression(b.identifier("cloudflare"), []),
84
+ );
85
+
86
+ return false;
87
+ },
88
+ });
89
+ }
90
+
91
+ function isPluginsProp(
92
+ prop: unknown,
93
+ ): prop is types.namedTypes.ObjectProperty | types.namedTypes.Property {
94
+ return (
95
+ (t.Property.check(prop) || t.ObjectProperty.check(prop)) &&
96
+ t.Identifier.check(prop.key) &&
97
+ prop.key.name === "plugins"
98
+ );
99
+ }
100
+
101
+ function updateTsconfigJson() {
102
+ const s = spinner();
103
+ s.start(`Updating tsconfig.json config`);
104
+ // Add a reference to the extra tsconfig.worker.json file.
105
+ // ```
106
+ // "references": [ ..., { path: "./tsconfig.worker.json" } ]
107
+ // ```
108
+ const tsconfig = readJSON("tsconfig.json") as { references: object[] };
109
+ if (tsconfig && typeof tsconfig === "object") {
110
+ tsconfig.references ??= [];
111
+ tsconfig.references.push({ path: "./tsconfig.worker.json" });
112
+ }
113
+ writeJSON("tsconfig.json", tsconfig);
114
+ s.stop(`${brandColor(`updated`)} ${dim(`\`tsconfig.json\``)}`);
115
+ }
116
+
117
+ async function getVariant() {
118
+ const variantsOptions = [
119
+ {
120
+ value: "react-ts",
121
+ lang: "ts",
122
+ label: "TypeScript",
123
+ },
124
+ {
125
+ value: "react-swc-ts",
126
+ lang: "ts",
127
+ label: "TypeScript + SWC",
128
+ },
129
+ {
130
+ value: "react",
131
+ lang: "js",
132
+ label: "JavaScript",
133
+ },
134
+ {
135
+ value: "react-swc",
136
+ lang: "js",
137
+ label: "JavaScript + SWC",
138
+ },
139
+ ];
140
+ const value = await inputPrompt({
141
+ type: "select",
142
+ question: "Select a variant:",
143
+ label: "variant",
144
+ options: variantsOptions,
145
+ defaultValue: variantsOptions[0].value,
146
+ });
147
+
148
+ const selected = variantsOptions.find((variant) => variant.value === value);
149
+ assert(selected, "Expected a variant to be selected");
150
+ return selected;
151
+ }
152
+
153
+ const config: TemplateConfig = {
154
+ configVersion: 1,
155
+ id: "react",
156
+ frameworkCli: "create-vite",
157
+ displayName: "React",
158
+ platform: "workers",
159
+ path: "templates/react/workers",
160
+ copyFiles: {
161
+ variants: {
162
+ ts: {
163
+ path: "./ts",
164
+ },
165
+ js: {
166
+ path: "./js",
167
+ },
168
+ },
169
+ },
170
+ generate,
171
+ configure,
172
+ transformPackageJson: async (_, ctx) => ({
173
+ scripts: {
174
+ deploy: `${npm} run build && wrangler deploy`,
175
+ preview: `${npm} run build && vite preview`,
176
+ ...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
177
+ },
178
+ }),
179
+ devScript: "dev",
180
+ deployScript: "deploy",
181
+ previewScript: "preview",
182
+ };
183
+ export default config;
@@ -0,0 +1,13 @@
1
+ export default {
2
+ fetch(request, env) {
3
+ const url = new URL(request.url);
4
+
5
+ if (url.pathname.startsWith("/api/")) {
6
+ return Response.json({
7
+ name: "Cloudflare",
8
+ });
9
+ }
10
+
11
+ return env.ASSETS.fetch(request);
12
+ },
13
+ }
@@ -0,0 +1,58 @@
1
+ import { useState } from 'react'
2
+ import reactLogo from './assets/react.svg'
3
+ import viteLogo from '/vite.svg'
4
+ import cloudflareLogo from './assets/Cloudflare_Logo.svg'
5
+ import './App.css'
6
+
7
+ function App() {
8
+ const [count, setCount] = useState(0)
9
+ const [name, setName] = useState('unknown')
10
+
11
+ return (
12
+ <>
13
+ <div>
14
+ <a href='https://vite.dev' target='_blank'>
15
+ <img src={viteLogo} className='logo' alt='Vite logo' />
16
+ </a>
17
+ <a href='https://react.dev' target='_blank'>
18
+ <img src={reactLogo} className='logo react' alt='React logo' />
19
+ </a>
20
+ <a href='https://workers.cloudflare.com/' target='_blank'>
21
+ <img src={cloudflareLogo} className='logo cloudflare' alt='Cloudflare logo' />
22
+ </a>
23
+ </div>
24
+ <h1>Vite + React + Cloudflare</h1>
25
+ <div className='card'>
26
+ <button
27
+ onClick={() => setCount((count) => count + 1)}
28
+ aria-label='increment'
29
+ >
30
+ count is {count}
31
+ </button>
32
+ <p>
33
+ Edit <code>src/App.tsx</code> and save to test HMR
34
+ </p>
35
+ </div>
36
+ <div className='card'>
37
+ <button
38
+ onClick={() => {
39
+ fetch('/api/')
40
+ .then((res) => res.json())
41
+ .then((data) => setName(data.name))
42
+ }}
43
+ aria-label='get name'
44
+ >
45
+ Name from API is: {name}
46
+ </button>
47
+ <p>
48
+ Edit <code>api/index.js</code> to change the name
49
+ </p>
50
+ </div>
51
+ <p className='read-the-docs'>
52
+ Click on the Vite and React logos to learn more
53
+ </p>
54
+ </>
55
+ )
56
+ }
57
+
58
+ export default App
@@ -0,0 +1,26 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 101.4 33.5">
2
+ <defs>
3
+ <style>
4
+ .a {
5
+ fill: #fff;
6
+ }
7
+
8
+ .b {
9
+ fill: #f48120;
10
+ }
11
+
12
+ .c {
13
+ fill: #faad3f;
14
+ }
15
+
16
+ .d {
17
+ fill: #404041;
18
+ }
19
+ </style>
20
+ </defs>
21
+ <title>Cloudflare logo</title>
22
+ <path class="a" d="M94.7,10.6,89.1,9.3l-1-.4-25.7.2V21.5l32.3.1Z"/>
23
+ <path class="b" d="M84.2,20.4a2.85546,2.85546,0,0,0-.3-2.6,3.09428,3.09428,0,0,0-2.1-1.1l-17.4-.2c-.1,0-.2-.1-.3-.1a.1875.1875,0,0,1,0-.3c.1-.2.2-.3.4-.3L82,15.6a6.29223,6.29223,0,0,0,5.1-3.8l1-2.6c0-.1.1-.2,0-.3A11.39646,11.39646,0,0,0,66.2,7.7a5.45941,5.45941,0,0,0-3.6-1A5.20936,5.20936,0,0,0,58,11.3a5.46262,5.46262,0,0,0,.1,1.8A7.30177,7.30177,0,0,0,51,20.4a4.102,4.102,0,0,0,.1,1.1.3193.3193,0,0,0,.3.3H83.5c.2,0,.4-.1.4-.3Z"/>
24
+ <path class="c" d="M89.7,9.2h-.5c-.1,0-.2.1-.3.2l-.7,2.4a2.85546,2.85546,0,0,0,.3,2.6,3.09428,3.09428,0,0,0,2.1,1.1l3.7.2c.1,0,.2.1.3.1a.1875.1875,0,0,1,0,.3c-.1.2-.2.3-.4.3l-3.8.2a6.29223,6.29223,0,0,0-5.1,3.8l-.2.9c-.1.1,0,.3.2.3H98.5a.26517.26517,0,0,0,.3-.3,10.87184,10.87184,0,0,0,.4-2.6,9.56045,9.56045,0,0,0-9.5-9.5"/>
25
+ <path class="d" d="M100.5,27.2a.9.9,0,1,1,.9-.9.89626.89626,0,0,1-.9.9m0-1.6a.7.7,0,1,0,.7.7.68354.68354,0,0,0-.7-.7m.4,1.2h-.2l-.2-.3h-.2v.3h-.2v-.9h.5a.26517.26517,0,0,1,.3.3c0,.1-.1.2-.2.3l.2.3Zm-.3-.5c.1,0,.1,0,.1-.1a.09794.09794,0,0,0-.1-.1h-.3v.3h.3Zm-89.7-.9h2.2v6h3.8v1.9h-6Zm8.3,3.9a4.10491,4.10491,0,0,1,4.3-4.1,4.02,4.02,0,0,1,4.2,4.1,4.10491,4.10491,0,0,1-4.3,4.1,4.07888,4.07888,0,0,1-4.2-4.1m6.3,0a2.05565,2.05565,0,0,0-2-2.2,2.1025,2.1025,0,0,0,0,4.2c1.2.2,2-.8,2-2m4.9.5V25.4h2.2v4.4c0,1.1.6,1.7,1.5,1.7a1.39926,1.39926,0,0,0,1.5-1.6V25.4h2.2v4.4c0,2.6-1.5,3.7-3.7,3.7-2.3-.1-3.7-1.2-3.7-3.7m10.7-4.4h3.1c2.8,0,4.5,1.6,4.5,3.9s-1.7,4-4.5,4h-3V25.4Zm3.1,5.9a2.00909,2.00909,0,1,0,0-4h-.9v4Zm7.6-5.9h6.3v1.9H54v1.3h3.7v1.8H54v2.9H51.8Zm9.4,0h2.2v6h3.8v1.9h-6Zm11.7-.1h2.2l3.4,8H76.1l-.6-1.4H72.4l-.6,1.4H69.5Zm2,4.9L74,28l-.9,2.2Zm6.4-4.8H85a3.41818,3.41818,0,0,1,2.6.9,2.62373,2.62373,0,0,1-.9,4.2l1.9,2.8H86.1l-1.6-2.4h-1v2.4H81.3Zm3.6,3.8c.7,0,1.2-.4,1.2-.9,0-.6-.5-.9-1.2-.9H83.5v1.9h1.4Zm6.5-3.8h6.4v1.8H93.6v1.2h3.8v1.8H93.6v1.2h4.3v1.9H91.4ZM6.1,30.3a1.97548,1.97548,0,0,1-1.8,1.2,2.1025,2.1025,0,0,1,0-4.2,2.0977,2.0977,0,0,1,1.9,1.3H8.5a4.13459,4.13459,0,0,0-4.2-3.3A4.1651,4.1651,0,0,0,0,29.4a4.07888,4.07888,0,0,0,4.2,4.1,4.31812,4.31812,0,0,0,4.2-3.2Z"/>
26
+ </svg>
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "api/index.js",
4
+ "compatibility_date": "<TBD>",
5
+ "assets": { "not_found_handling": "single-page-application", "binding": "ASSETS" },
6
+ "observability": {
7
+ "enabled": true
8
+ }
9
+ }
@@ -0,0 +1,13 @@
1
+ export default {
2
+ fetch(request, env) {
3
+ const url = new URL(request.url);
4
+
5
+ if (url.pathname.startsWith("/api/")) {
6
+ return Response.json({
7
+ name: "Cloudflare",
8
+ });
9
+ }
10
+
11
+ return env.ASSETS.fetch(request);
12
+ },
13
+ } satisfies ExportedHandler<Env>;
@@ -0,0 +1,58 @@
1
+ import { useState } from 'react'
2
+ import reactLogo from './assets/react.svg'
3
+ import viteLogo from '/vite.svg'
4
+ import cloudflareLogo from './assets/Cloudflare_Logo.svg'
5
+ import './App.css'
6
+
7
+ function App() {
8
+ const [count, setCount] = useState(0)
9
+ const [name, setName] = useState('unknown')
10
+
11
+ return (
12
+ <>
13
+ <div>
14
+ <a href='https://vite.dev' target='_blank'>
15
+ <img src={viteLogo} className='logo' alt='Vite logo' />
16
+ </a>
17
+ <a href='https://react.dev' target='_blank'>
18
+ <img src={reactLogo} className='logo react' alt='React logo' />
19
+ </a>
20
+ <a href='https://workers.cloudflare.com/' target='_blank'>
21
+ <img src={cloudflareLogo} className='logo cloudflare' alt='Cloudflare logo' />
22
+ </a>
23
+ </div>
24
+ <h1>Vite + React + Cloudflare</h1>
25
+ <div className='card'>
26
+ <button
27
+ onClick={() => setCount((count) => count + 1)}
28
+ aria-label='increment'
29
+ >
30
+ count is {count}
31
+ </button>
32
+ <p>
33
+ Edit <code>src/App.tsx</code> and save to test HMR
34
+ </p>
35
+ </div>
36
+ <div className='card'>
37
+ <button
38
+ onClick={() => {
39
+ fetch('/api/')
40
+ .then((res) => res.json() as Promise<{ name: string }>)
41
+ .then((data) => setName(data.name))
42
+ }}
43
+ aria-label='get name'
44
+ >
45
+ Name from API is: {name}
46
+ </button>
47
+ <p>
48
+ Edit <code>api/index.ts</code> to change the name
49
+ </p>
50
+ </div>
51
+ <p className='read-the-docs'>
52
+ Click on the Vite and React logos to learn more
53
+ </p>
54
+ </>
55
+ )
56
+ }
57
+
58
+ export default App
@@ -0,0 +1,26 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 101.4 33.5">
2
+ <defs>
3
+ <style>
4
+ .a {
5
+ fill: #fff;
6
+ }
7
+
8
+ .b {
9
+ fill: #f48120;
10
+ }
11
+
12
+ .c {
13
+ fill: #faad3f;
14
+ }
15
+
16
+ .d {
17
+ fill: #404041;
18
+ }
19
+ </style>
20
+ </defs>
21
+ <title>Cloudflare logo</title>
22
+ <path class="a" d="M94.7,10.6,89.1,9.3l-1-.4-25.7.2V21.5l32.3.1Z"/>
23
+ <path class="b" d="M84.2,20.4a2.85546,2.85546,0,0,0-.3-2.6,3.09428,3.09428,0,0,0-2.1-1.1l-17.4-.2c-.1,0-.2-.1-.3-.1a.1875.1875,0,0,1,0-.3c.1-.2.2-.3.4-.3L82,15.6a6.29223,6.29223,0,0,0,5.1-3.8l1-2.6c0-.1.1-.2,0-.3A11.39646,11.39646,0,0,0,66.2,7.7a5.45941,5.45941,0,0,0-3.6-1A5.20936,5.20936,0,0,0,58,11.3a5.46262,5.46262,0,0,0,.1,1.8A7.30177,7.30177,0,0,0,51,20.4a4.102,4.102,0,0,0,.1,1.1.3193.3193,0,0,0,.3.3H83.5c.2,0,.4-.1.4-.3Z"/>
24
+ <path class="c" d="M89.7,9.2h-.5c-.1,0-.2.1-.3.2l-.7,2.4a2.85546,2.85546,0,0,0,.3,2.6,3.09428,3.09428,0,0,0,2.1,1.1l3.7.2c.1,0,.2.1.3.1a.1875.1875,0,0,1,0,.3c-.1.2-.2.3-.4.3l-3.8.2a6.29223,6.29223,0,0,0-5.1,3.8l-.2.9c-.1.1,0,.3.2.3H98.5a.26517.26517,0,0,0,.3-.3,10.87184,10.87184,0,0,0,.4-2.6,9.56045,9.56045,0,0,0-9.5-9.5"/>
25
+ <path class="d" d="M100.5,27.2a.9.9,0,1,1,.9-.9.89626.89626,0,0,1-.9.9m0-1.6a.7.7,0,1,0,.7.7.68354.68354,0,0,0-.7-.7m.4,1.2h-.2l-.2-.3h-.2v.3h-.2v-.9h.5a.26517.26517,0,0,1,.3.3c0,.1-.1.2-.2.3l.2.3Zm-.3-.5c.1,0,.1,0,.1-.1a.09794.09794,0,0,0-.1-.1h-.3v.3h.3Zm-89.7-.9h2.2v6h3.8v1.9h-6Zm8.3,3.9a4.10491,4.10491,0,0,1,4.3-4.1,4.02,4.02,0,0,1,4.2,4.1,4.10491,4.10491,0,0,1-4.3,4.1,4.07888,4.07888,0,0,1-4.2-4.1m6.3,0a2.05565,2.05565,0,0,0-2-2.2,2.1025,2.1025,0,0,0,0,4.2c1.2.2,2-.8,2-2m4.9.5V25.4h2.2v4.4c0,1.1.6,1.7,1.5,1.7a1.39926,1.39926,0,0,0,1.5-1.6V25.4h2.2v4.4c0,2.6-1.5,3.7-3.7,3.7-2.3-.1-3.7-1.2-3.7-3.7m10.7-4.4h3.1c2.8,0,4.5,1.6,4.5,3.9s-1.7,4-4.5,4h-3V25.4Zm3.1,5.9a2.00909,2.00909,0,1,0,0-4h-.9v4Zm7.6-5.9h6.3v1.9H54v1.3h3.7v1.8H54v2.9H51.8Zm9.4,0h2.2v6h3.8v1.9h-6Zm11.7-.1h2.2l3.4,8H76.1l-.6-1.4H72.4l-.6,1.4H69.5Zm2,4.9L74,28l-.9,2.2Zm6.4-4.8H85a3.41818,3.41818,0,0,1,2.6.9,2.62373,2.62373,0,0,1-.9,4.2l1.9,2.8H86.1l-1.6-2.4h-1v2.4H81.3Zm3.6,3.8c.7,0,1.2-.4,1.2-.9,0-.6-.5-.9-1.2-.9H83.5v1.9h1.4Zm6.5-3.8h6.4v1.8H93.6v1.2h3.8v1.8H93.6v1.2h4.3v1.9H91.4ZM6.1,30.3a1.97548,1.97548,0,0,1-1.8,1.2,2.1025,2.1025,0,0,1,0-4.2,2.0977,2.0977,0,0,1,1.9,1.3H8.5a4.13459,4.13459,0,0,0-4.2-3.3A4.1651,4.1651,0,0,0,0,29.4a4.07888,4.07888,0,0,0,4.2,4.1,4.31812,4.31812,0,0,0,4.2-3.2Z"/>
26
+ </svg>
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "./tsconfig.node.json",
3
+ "compilerOptions": {
4
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.worker.tsbuildinfo",
5
+ "types": ["@cloudflare/workers-types/2023-07-01", "./worker-configuration.d.ts", "vite/client"],
6
+ },
7
+ "include": ["api"],
8
+ }
@@ -0,0 +1,5 @@
1
+ // Generated by Wrangler
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
+ interface Env {
4
+ ASSETS: Fetcher;
5
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "api/index.ts",
4
+ "compatibility_date": "<TBD>",
5
+ "assets": { "not_found_handling": "single-page-application", "binding": "ASSETS" },
6
+ "observability": {
7
+ "enabled": true
8
+ }
9
+ }
@@ -1,6 +1,9 @@
1
1
  import { logRaw } from "@cloudflare/cli";
2
- import { runFrameworkGenerator } from "helpers/command.js";
3
- import { detectPackageManager } from "helpers/packages";
2
+ import { brandColor, dim } from "@cloudflare/cli/colors";
3
+ import { spinner } from "@cloudflare/cli/interactive";
4
+ import { runFrameworkGenerator } from "frameworks/index";
5
+ import { transformFile } from "helpers/codemod";
6
+ import { detectPackageManager } from "helpers/packageManagers";
4
7
  import type { TemplateConfig } from "../../src/templates";
5
8
  import type { C3Context } from "types";
6
9
 
@@ -10,24 +13,55 @@ const generate = async (ctx: C3Context) => {
10
13
  await runFrameworkGenerator(ctx, [
11
14
  ctx.project.name,
12
15
  "--template",
13
- "https://github.com/remix-run/remix/tree/main/templates/cloudflare-pages",
16
+ "https://github.com/remix-run/remix/tree/main/templates/cloudflare",
14
17
  ]);
15
18
 
16
19
  logRaw(""); // newline
17
20
  };
18
21
 
22
+ const configure = async () => {
23
+ const typeDefsPath = "load-context.ts";
24
+
25
+ const s = spinner();
26
+ s.start(`Updating \`${typeDefsPath}\``);
27
+
28
+ // Remove the empty Env declaration from the template to allow the type from
29
+ // worker-configuration.d.ts to take over
30
+ transformFile(typeDefsPath, {
31
+ visitTSInterfaceDeclaration(n) {
32
+ if (n.node.id.type === "Identifier" && n.node.id.name !== "Env") {
33
+ return this.traverse(n);
34
+ }
35
+
36
+ // Removes the node
37
+ n.replace();
38
+ return false;
39
+ },
40
+ });
41
+
42
+ s.stop(`${brandColor("updated")} \`${dim(typeDefsPath)}\``);
43
+ };
44
+
19
45
  const config: TemplateConfig = {
20
46
  configVersion: 1,
21
47
  id: "remix",
22
- displayName: "Remix",
48
+ frameworkCli: "create-remix",
23
49
  platform: "pages",
50
+ displayName: "Remix",
51
+ copyFiles: {
52
+ path: "./templates",
53
+ },
24
54
  generate,
55
+ configure,
25
56
  transformPackageJson: async () => ({
26
57
  scripts: {
27
- "pages:deploy": `${npm} run build && wrangler pages deploy ./public`,
58
+ deploy: `${npm} run build && wrangler pages deploy`,
59
+ preview: `${npm} run build && wrangler pages dev`,
60
+ "cf-typegen": `wrangler types`,
28
61
  },
29
62
  }),
30
- devCommand: ["dev"],
31
- testFlags: ["--typescript", "--no-install", "--no-git-init"],
63
+ devScript: "dev",
64
+ deployScript: "deploy",
65
+ previewScript: "preview",
32
66
  };
33
67
  export default config;
@@ -0,0 +1,4 @@
1
+ // Generated by Wrangler
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
+ interface Env {
4
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "pages_build_output_dir": "./build/client"
5
+ }
@@ -2,14 +2,17 @@ export default {
2
2
  configVersion: 1,
3
3
  id: "scheduled",
4
4
  displayName: "Scheduled Worker (Cron Trigger)",
5
+ description:
6
+ "Create a Worker to be executed on a schedule for periodic (cron) jobs",
5
7
  platform: "workers",
6
- languages: ["js", "ts"],
7
8
  copyFiles: {
8
- js: {
9
- path: "./js",
10
- },
11
- ts: {
12
- path: "./ts",
9
+ variants: {
10
+ js: {
11
+ path: "./js",
12
+ },
13
+ ts: {
14
+ path: "./ts",
15
+ },
13
16
  },
14
17
  },
15
18
  };
@@ -3,7 +3,6 @@ root = true
3
3
 
4
4
  [*]
5
5
  indent_style = tab
6
- tab_width = 2
7
6
  end_of_line = lf
8
7
  charset = utf-8
9
8
  trim_trailing_whitespace = true
@@ -4,10 +4,10 @@
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "deploy": "wrangler deploy",
7
- "dev": "wrangler dev",
8
- "start": "wrangler dev"
7
+ "dev": "wrangler dev --test-scheduled",
8
+ "start": "wrangler dev --test-scheduled"
9
9
  },
10
10
  "devDependencies": {
11
- "wrangler": "^3.0.0"
11
+ "wrangler": "^3.101.0"
12
12
  }
13
13
  }
@@ -6,14 +6,21 @@
6
6
  * https://developers.cloudflare.com/workers/platform/triggers/cron-triggers/
7
7
  *
8
8
  * - Run `npm run dev` in your terminal to start a development server
9
- * - Open a browser tab at http://localhost:8787/ to see your worker in action
9
+ * - Run `curl "http://localhost:8787/__scheduled?cron=*+*+*+*+*"` to see your worker in action
10
10
  * - Run `npm run deploy` to publish your worker
11
11
  *
12
12
  * Learn more at https://developers.cloudflare.com/workers/
13
13
  */
14
14
 
15
15
  export default {
16
- // The scheduled handler is invoked at the interval set in our wrangler.toml's
16
+ async fetch(req) {
17
+ const url = new URL(req.url)
18
+ url.pathname = "/__scheduled";
19
+ url.searchParams.append("cron", "* * * * *");
20
+ return new Response(`To test the scheduled handler, ensure you have used the "--test-scheduled" then try running "curl ${url.href}".`);
21
+ },
22
+
23
+ // The scheduled handler is invoked at the interval set in our wrangler.jsonc's
17
24
  // [[triggers]] configuration.
18
25
  async scheduled(event, env, ctx) {
19
26
  // A Cron Trigger can make requests to other endpoints on the Internet,
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.js",
4
+ "compatibility_date": "<TBD>",
5
+ "observability": {
6
+ "enabled": true
7
+ },
8
+ "triggers": {
9
+ "crons": [
10
+ "* * * * *"
11
+ ]
12
+ }
13
+ }
@@ -3,7 +3,6 @@ root = true
3
3
 
4
4
  [*]
5
5
  indent_style = tab
6
- tab_width = 2
7
6
  end_of_line = lf
8
7
  charset = utf-8
9
8
  trim_trailing_whitespace = true