create-cloudflare 0.0.0-e2a6fa40 → 0.0.0-e2e6912bc

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 (248) hide show
  1. package/README.md +2 -53
  2. package/dist/cli.js +74123 -54577
  3. package/dist/tsconfig.tsbuildinfo +1 -0
  4. package/package.json +43 -27
  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.toml +85 -0
  11. package/templates/angular/c3.ts +102 -0
  12. package/{dist/angular/templates/src/main.server.ts → templates/angular/templates/server.ts} +14 -15
  13. package/templates/angular/templates/tools/alter-polyfills.mjs +27 -0
  14. package/templates/angular/templates/tools/copy-files.mjs +9 -0
  15. package/templates/astro/c3.ts +113 -0
  16. package/templates/astro/snippets/runtimeDeclaration.ts +5 -0
  17. package/templates/astro/templates/wrangler.toml +86 -0
  18. package/templates/common/c3.ts +19 -0
  19. package/templates/common/js/.editorconfig +0 -1
  20. package/templates/common/js/__dot__gitignore +172 -0
  21. package/templates/common/js/package.json +2 -1
  22. package/templates/common/js/wrangler.toml +85 -23
  23. package/templates/common/ts/.editorconfig +0 -1
  24. package/templates/common/ts/__dot__gitignore +172 -0
  25. package/templates/common/ts/package.json +5 -4
  26. package/templates/common/ts/src/ab-test.ts +2 -2
  27. package/templates/common/ts/src/index.ts +5 -2
  28. package/templates/common/ts/src/proxy.ts +2 -2
  29. package/templates/common/ts/src/redirect.ts +2 -2
  30. package/templates/common/ts/tsconfig.json +37 -95
  31. package/templates/common/ts/worker-configuration.d.ts +2 -14
  32. package/templates/common/ts/wrangler.toml +85 -23
  33. package/templates/docusaurus/c3.ts +28 -0
  34. package/templates/gatsby/c3.ts +49 -0
  35. package/templates/hello-world/c3.ts +20 -0
  36. package/templates/hello-world/js/.editorconfig +0 -1
  37. package/templates/hello-world/js/__dot__gitignore +172 -0
  38. package/templates/hello-world/js/package.json +6 -2
  39. package/templates/hello-world/js/test/index.spec.js +20 -0
  40. package/templates/hello-world/js/vitest.config.js +11 -0
  41. package/templates/hello-world/js/wrangler.toml +86 -23
  42. package/templates/hello-world/py/__dot__gitignore +68 -0
  43. package/templates/hello-world/py/package.json +13 -0
  44. package/templates/hello-world/py/src/entry.py +4 -0
  45. package/templates/hello-world/py/wrangler.toml +114 -0
  46. package/templates/hello-world/ts/.editorconfig +0 -1
  47. package/templates/hello-world/ts/__dot__gitignore +172 -0
  48. package/templates/hello-world/ts/package.json +8 -4
  49. package/templates/hello-world/ts/src/index.ts +5 -19
  50. package/templates/hello-world/ts/test/index.spec.ts +25 -0
  51. package/templates/hello-world/ts/test/tsconfig.json +8 -0
  52. package/templates/hello-world/ts/tsconfig.json +39 -96
  53. package/templates/hello-world/ts/vitest.config.mts +11 -0
  54. package/templates/hello-world/ts/worker-configuration.d.ts +4 -0
  55. package/templates/hello-world/ts/wrangler.toml +86 -23
  56. package/templates/hello-world-durable-object/c3.ts +18 -0
  57. package/templates/hello-world-durable-object/js/.editorconfig +12 -0
  58. package/templates/hello-world-durable-object/js/.prettierrc +6 -0
  59. package/templates/hello-world-durable-object/js/__dot__gitignore +172 -0
  60. package/templates/hello-world-durable-object/js/package.json +13 -0
  61. package/templates/hello-world-durable-object/js/src/index.js +69 -0
  62. package/templates/hello-world-durable-object/js/wrangler.toml +113 -0
  63. package/templates/hello-world-durable-object/ts/.editorconfig +12 -0
  64. package/templates/hello-world-durable-object/ts/.prettierrc +6 -0
  65. package/templates/hello-world-durable-object/ts/__dot__gitignore +172 -0
  66. package/templates/hello-world-durable-object/ts/package.json +15 -0
  67. package/templates/hello-world-durable-object/ts/src/index.ts +65 -0
  68. package/templates/hello-world-durable-object/ts/tsconfig.json +42 -0
  69. package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +5 -0
  70. package/templates/hello-world-durable-object/ts/wrangler.toml +113 -0
  71. package/templates/hono/c3.ts +69 -0
  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.toml +113 -0
  75. package/templates/next/README.md +68 -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 +22 -0
  79. package/templates/next/app/ts/app/not-found.tsx +58 -0
  80. package/templates/next/c3.ts +238 -0
  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.toml +86 -0
  85. package/templates/nuxt/c3.ts +134 -0
  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.toml +86 -0
  89. package/templates/openapi/c3.ts +10 -0
  90. package/templates/openapi/ts/README.md +25 -0
  91. package/templates/openapi/ts/__dot__gitignore +171 -0
  92. package/templates/openapi/ts/package.json +21 -0
  93. package/templates/openapi/ts/src/endpoints/taskCreate.ts +58 -0
  94. package/templates/openapi/ts/src/endpoints/taskDelete.ts +56 -0
  95. package/templates/openapi/ts/src/endpoints/taskFetch.ts +81 -0
  96. package/templates/openapi/ts/src/endpoints/taskList.ts +69 -0
  97. package/templates/openapi/ts/src/index.ts +23 -0
  98. package/templates/openapi/ts/src/types.ts +10 -0
  99. package/templates/openapi/ts/tsconfig.json +32 -0
  100. package/templates/openapi/ts/worker-configuration.d.ts +4 -0
  101. package/templates/openapi/ts/wrangler.toml +113 -0
  102. package/templates/pre-existing/c3.ts +102 -0
  103. package/templates/pre-existing/js/.editorconfig +12 -0
  104. package/templates/pre-existing/js/.prettierrc +6 -0
  105. package/templates/pre-existing/js/__dot__gitignore +172 -0
  106. package/templates/pre-existing/js/package.json +13 -0
  107. package/templates/pre-existing/js/wrangler.toml +4 -0
  108. package/templates/queues/c3.ts +28 -0
  109. package/templates/queues/js/.editorconfig +0 -1
  110. package/templates/queues/js/__dot__gitignore +172 -0
  111. package/templates/queues/js/package.json +2 -1
  112. package/templates/queues/js/wrangler.toml +101 -2
  113. package/templates/queues/ts/.editorconfig +0 -1
  114. package/templates/queues/ts/__dot__gitignore +172 -0
  115. package/templates/queues/ts/package.json +5 -4
  116. package/templates/queues/ts/src/index.ts +6 -8
  117. package/templates/queues/ts/tsconfig.json +36 -95
  118. package/templates/queues/ts/worker-configuration.d.ts +5 -0
  119. package/templates/queues/ts/wrangler.toml +101 -2
  120. package/templates/qwik/c3.ts +147 -0
  121. package/templates/qwik/snippets/getPlatformProxy.ts +6 -0
  122. package/templates/qwik/templates/worker-configuration.d.ts +4 -0
  123. package/templates/qwik/templates/wrangler.toml +86 -0
  124. package/templates/react/c3.ts +61 -0
  125. package/templates/remix/c3.ts +67 -0
  126. package/templates/remix/templates/worker-configuration.d.ts +4 -0
  127. package/templates/remix/templates/wrangler.toml +85 -0
  128. package/templates/scheduled/c3.ts +18 -0
  129. package/templates/scheduled/js/.editorconfig +0 -1
  130. package/templates/scheduled/js/__dot__gitignore +172 -0
  131. package/templates/scheduled/js/package.json +3 -2
  132. package/templates/scheduled/js/src/index.js +8 -1
  133. package/templates/scheduled/js/wrangler.toml +111 -1
  134. package/templates/scheduled/ts/.editorconfig +0 -1
  135. package/templates/scheduled/ts/__dot__gitignore +172 -0
  136. package/templates/scheduled/ts/package.json +5 -4
  137. package/templates/scheduled/ts/src/index.ts +6 -23
  138. package/templates/scheduled/ts/tsconfig.json +36 -95
  139. package/templates/scheduled/ts/worker-configuration.d.ts +4 -0
  140. package/templates/scheduled/ts/wrangler.toml +111 -1
  141. package/templates/solid/c3.ts +87 -0
  142. package/templates/solid/templates/wrangler.toml +84 -0
  143. package/templates/svelte/c3.ts +131 -0
  144. package/templates/svelte/js/wrangler.toml +85 -0
  145. package/templates/svelte/ts/wrangler.toml +85 -0
  146. package/templates/vue/c3.ts +29 -0
  147. package/templates-experimental/angular/c3.ts +98 -0
  148. package/templates-experimental/angular/templates/server.ts +34 -0
  149. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +32 -0
  150. package/templates-experimental/angular/templates/wrangler.toml +11 -0
  151. package/templates-experimental/astro/c3.ts +114 -0
  152. package/templates-experimental/astro/snippets/runtimeDeclaration.ts +5 -0
  153. package/templates-experimental/astro/templates/public/.assetsignore +4 -0
  154. package/templates-experimental/astro/templates/wrangler.toml +12 -0
  155. package/templates-experimental/docusaurus/c3.ts +32 -0
  156. package/templates-experimental/docusaurus/templates/wrangler.toml +10 -0
  157. package/templates-experimental/gatsby/c3.ts +53 -0
  158. package/templates-experimental/gatsby/templates/wrangler.toml +10 -0
  159. package/templates-experimental/hello-world-assets-only/c3.ts +15 -0
  160. package/templates-experimental/hello-world-assets-only/templates/package.json +13 -0
  161. package/templates-experimental/hello-world-assets-only/templates/public/index.html +11 -0
  162. package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +10 -0
  163. package/templates-experimental/hello-world-durable-object-with-assets/c3.ts +23 -0
  164. package/templates-experimental/hello-world-durable-object-with-assets/js/.editorconfig +12 -0
  165. package/templates-experimental/hello-world-durable-object-with-assets/js/.prettierrc +6 -0
  166. package/templates-experimental/hello-world-durable-object-with-assets/js/__dot__gitignore +172 -0
  167. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +13 -0
  168. package/templates-experimental/hello-world-durable-object-with-assets/js/public/index.html +19 -0
  169. package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +69 -0
  170. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +24 -0
  171. package/templates-experimental/hello-world-durable-object-with-assets/ts/.editorconfig +12 -0
  172. package/templates-experimental/hello-world-durable-object-with-assets/ts/.prettierrc +6 -0
  173. package/templates-experimental/hello-world-durable-object-with-assets/ts/__dot__gitignore +172 -0
  174. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +15 -0
  175. package/templates-experimental/hello-world-durable-object-with-assets/ts/public/index.html +19 -0
  176. package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +66 -0
  177. package/templates-experimental/hello-world-durable-object-with-assets/ts/tsconfig.json +42 -0
  178. package/templates-experimental/hello-world-durable-object-with-assets/ts/worker-configuration.d.ts +5 -0
  179. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +24 -0
  180. package/templates-experimental/hello-world-with-assets/c3.ts +22 -0
  181. package/templates-experimental/hello-world-with-assets/js/.editorconfig +12 -0
  182. package/templates-experimental/hello-world-with-assets/js/.prettierrc +6 -0
  183. package/templates-experimental/hello-world-with-assets/js/__dot__gitignore +172 -0
  184. package/templates-experimental/hello-world-with-assets/js/package.json +16 -0
  185. package/templates-experimental/hello-world-with-assets/js/public/index.html +31 -0
  186. package/templates-experimental/hello-world-with-assets/js/src/index.js +23 -0
  187. package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +41 -0
  188. package/templates-experimental/hello-world-with-assets/js/vitest.config.js +11 -0
  189. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +12 -0
  190. package/templates-experimental/hello-world-with-assets/py/__dot__gitignore +68 -0
  191. package/templates-experimental/hello-world-with-assets/py/package.json +13 -0
  192. package/templates-experimental/hello-world-with-assets/py/public/index.html +31 -0
  193. package/templates-experimental/hello-world-with-assets/py/src/entry.py +9 -0
  194. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +12 -0
  195. package/templates-experimental/hello-world-with-assets/ts/.editorconfig +12 -0
  196. package/templates-experimental/hello-world-with-assets/ts/.prettierrc +6 -0
  197. package/templates-experimental/hello-world-with-assets/ts/__dot__gitignore +172 -0
  198. package/templates-experimental/hello-world-with-assets/ts/package.json +18 -0
  199. package/templates-experimental/hello-world-with-assets/ts/public/index.html +31 -0
  200. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +26 -0
  201. package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +41 -0
  202. package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +8 -0
  203. package/templates-experimental/hello-world-with-assets/ts/tsconfig.json +44 -0
  204. package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +11 -0
  205. package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +4 -0
  206. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +12 -0
  207. package/templates-experimental/hono/c3.ts +43 -0
  208. package/templates-experimental/hono/templates/public/index.html +19 -0
  209. package/templates-experimental/hono/templates/src/index.ts +9 -0
  210. package/templates-experimental/hono/templates/worker-configuration.d.ts +4 -0
  211. package/templates-experimental/hono/templates/wrangler.toml +5 -0
  212. package/templates-experimental/next/c3.ts +52 -0
  213. package/templates-experimental/next/templates/__dot__gitignore +42 -0
  214. package/templates-experimental/next/templates/env.d.ts +5 -0
  215. package/templates-experimental/next/templates/wrangler.toml +12 -0
  216. package/templates-experimental/nuxt/c3.ts +135 -0
  217. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +27 -0
  218. package/templates-experimental/nuxt/templates/env.d.ts +14 -0
  219. package/templates-experimental/nuxt/templates/worker-configuration.d.ts +4 -0
  220. package/templates-experimental/nuxt/templates/wrangler.toml +11 -0
  221. package/templates-experimental/qwik/c3.ts +153 -0
  222. package/templates-experimental/qwik/snippets/getPlatformProxy.ts +6 -0
  223. package/templates-experimental/qwik/templates/public/.assetsignore +4 -0
  224. package/templates-experimental/qwik/templates/worker-configuration.d.ts +4 -0
  225. package/templates-experimental/qwik/templates/wrangler.toml +12 -0
  226. package/templates-experimental/remix/c3.ts +52 -0
  227. package/templates-experimental/remix/templates/public/.assetsignore +0 -0
  228. package/templates-experimental/remix/templates/worker-configuration.d.ts +4 -0
  229. package/templates-experimental/remix/templates/wrangler.toml +11 -0
  230. package/templates-experimental/solid/c3.ts +137 -0
  231. package/templates-experimental/solid/templates/wrangler.toml +12 -0
  232. package/templates-experimental/svelte/c3.ts +132 -0
  233. package/templates-experimental/svelte/js/static/.assetsignore +4 -0
  234. package/templates-experimental/svelte/js/wrangler.toml +11 -0
  235. package/templates-experimental/svelte/ts/static/.assetsignore +4 -0
  236. package/templates-experimental/svelte/ts/wrangler.toml +11 -0
  237. package/dist/angular/templates/tools/bundle.mjs +0 -77
  238. package/dist/angular/templates/tools/copy-client-files.mjs +0 -4
  239. package/dist/angular/templates/tools/copy-worker-files.mjs +0 -10
  240. package/dist/angular/templates/tsconfig.server.json +0 -5
  241. package/templates/chatgptPlugin/ts/.assets/example.png +0 -0
  242. package/templates/chatgptPlugin/ts/README.md +0 -25
  243. package/templates/chatgptPlugin/ts/package.json +0 -16
  244. package/templates/chatgptPlugin/ts/src/index.ts +0 -33
  245. package/templates/chatgptPlugin/ts/src/search.ts +0 -63
  246. package/templates/chatgptPlugin/ts/wrangler.toml +0 -3
  247. /package/{dist → templates}/angular/templates/src/_routes.json +0 -0
  248. /package/{dist → templates}/angular/templates/tools/paths.mjs +0 -0
@@ -0,0 +1,87 @@
1
+ import { logRaw, updateStatus } from "@cloudflare/cli";
2
+ import { blue } from "@cloudflare/cli/colors";
3
+ import { runFrameworkGenerator } from "frameworks/index";
4
+ import { mergeObjectProperties, transformFile } from "helpers/codemod";
5
+ import { usesTypescript } from "helpers/files";
6
+ import { detectPackageManager } from "helpers/packageManagers";
7
+ import * as recast from "recast";
8
+ import type { TemplateConfig } from "../../src/templates";
9
+ import type { C3Context } from "types";
10
+
11
+ const { npm } = detectPackageManager();
12
+
13
+ const generate = async (ctx: C3Context) => {
14
+ // Run the create-solid command
15
+ // -s flag forces solid-start
16
+ await runFrameworkGenerator(ctx, ["-p", ctx.project.name, "-s"]);
17
+
18
+ logRaw("");
19
+ };
20
+
21
+ const configure = async (ctx: C3Context) => {
22
+ usesTypescript(ctx);
23
+ const filePath = `app.config.${usesTypescript(ctx) ? "ts" : "js"}`;
24
+
25
+ updateStatus(`Updating configuration in ${blue(filePath)}`);
26
+
27
+ transformFile(filePath, {
28
+ visitCallExpression: function (n) {
29
+ const callee = n.node.callee as recast.types.namedTypes.Identifier;
30
+ if (callee.name !== "defineConfig") {
31
+ return this.traverse(n);
32
+ }
33
+
34
+ const b = recast.types.builders;
35
+
36
+ mergeObjectProperties(
37
+ n.node.arguments[0] as recast.types.namedTypes.ObjectExpression,
38
+ [
39
+ b.objectProperty(
40
+ b.identifier("server"),
41
+ b.objectExpression([
42
+ b.objectProperty(
43
+ b.identifier("preset"),
44
+ b.stringLiteral("cloudflare-pages"),
45
+ ),
46
+ b.objectProperty(
47
+ b.identifier("rollupConfig"),
48
+ b.objectExpression([
49
+ b.objectProperty(
50
+ b.identifier("external"),
51
+ b.arrayExpression([b.stringLiteral("node:async_hooks")]),
52
+ ),
53
+ ]),
54
+ ),
55
+ ]),
56
+ ),
57
+ ],
58
+ );
59
+
60
+ return false;
61
+ },
62
+ });
63
+ };
64
+
65
+ const config: TemplateConfig = {
66
+ configVersion: 1,
67
+ id: "solid",
68
+ frameworkCli: "create-solid",
69
+ displayName: "Solid",
70
+ platform: "pages",
71
+ copyFiles: {
72
+ path: "./templates",
73
+ },
74
+ generate,
75
+ configure,
76
+ transformPackageJson: async () => ({
77
+ scripts: {
78
+ preview: `${npm} run build && npx wrangler pages dev`,
79
+ deploy: `${npm} run build && wrangler pages deploy`,
80
+ },
81
+ }),
82
+ compatibilityFlags: ["nodejs_compat"],
83
+ devScript: "dev",
84
+ deployScript: "deploy",
85
+ previewScript: "preview",
86
+ };
87
+ export default config;
@@ -0,0 +1,84 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ compatibility_flags = ["nodejs_compat"]
5
+ pages_build_output_dir = "./dist"
6
+
7
+ # Automatically place your workloads in an optimal location to minimize latency.
8
+ # If you are running back-end logic in a Pages Function, running it closer to your back-end infrastructure
9
+ # rather than the end user may result in better performance.
10
+ # Docs: https://developers.cloudflare.com/pages/functions/smart-placement/#smart-placement
11
+ # [placement]
12
+ # mode = "smart"
13
+
14
+ # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
15
+ # Note: Use secrets to store sensitive data.
16
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
17
+ # [vars]
18
+ # MY_VARIABLE = "production_value"
19
+
20
+ # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
21
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#workers-ai
22
+ # [ai]
23
+ # binding = "AI"
24
+
25
+ # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
26
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#d1-databases
27
+ # [[d1_databases]]
28
+ # binding = "MY_DB"
29
+ # database_name = "my-database"
30
+ # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
31
+
32
+ # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
33
+ # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
34
+ # Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
35
+ # [[durable_objects.bindings]]
36
+ # name = "MY_DURABLE_OBJECT"
37
+ # class_name = "MyDurableObject"
38
+ # script_name = 'my-durable-object'
39
+
40
+ # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
41
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#kv-namespaces
42
+ # [[kv_namespaces]]
43
+ # binding = "MY_KV_NAMESPACE"
44
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
45
+
46
+ # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
47
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#queue-producers
48
+ # [[queues.producers]]
49
+ # binding = "MY_QUEUE"
50
+ # queue = "my-queue"
51
+
52
+ # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
53
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#r2-buckets
54
+ # [[r2_buckets]]
55
+ # binding = "MY_BUCKET"
56
+ # bucket_name = "my-bucket"
57
+
58
+ # Bind another Worker service. Use this binding to call another Worker without network overhead.
59
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#service-bindings
60
+ # [[services]]
61
+ # binding = "MY_SERVICE"
62
+ # service = "my-service"
63
+
64
+ # To use different bindings for preview and production environments, follow the examples below.
65
+ # When using environment-specific overrides for bindings, ALL bindings must be specified on a per-environment basis.
66
+ # Docs: https://developers.cloudflare.com/pages/functions/wrangler-configuration#environment-specific-overrides
67
+
68
+ ######## PREVIEW environment config ########
69
+
70
+ # [env.preview.vars]
71
+ # API_KEY = "xyz789"
72
+
73
+ # [[env.preview.kv_namespaces]]
74
+ # binding = "MY_KV_NAMESPACE"
75
+ # id = "<PREVIEW_NAMESPACE_ID>"
76
+
77
+ ######## PRODUCTION environment config ########
78
+
79
+ # [env.production.vars]
80
+ # API_KEY = "abc123"
81
+
82
+ # [[env.production.kv_namespaces]]
83
+ # binding = "MY_KV_NAMESPACE"
84
+ # id = "<PRODUCTION_NAMESPACE_ID>"
@@ -0,0 +1,131 @@
1
+ import { platform } from "node:os";
2
+ import { logRaw, updateStatus } from "@cloudflare/cli";
3
+ import { blue, brandColor, dim } from "@cloudflare/cli/colors";
4
+ import { runFrameworkGenerator } from "frameworks/index";
5
+ import { transformFile } from "helpers/codemod";
6
+ import { usesTypescript } from "helpers/files";
7
+ import { detectPackageManager } from "helpers/packageManagers";
8
+ import { installPackages } from "helpers/packages";
9
+ import * as recast from "recast";
10
+ import type { TemplateConfig } from "../../src/templates";
11
+ import type { C3Context, PackageJson } from "types";
12
+
13
+ const { npm } = detectPackageManager();
14
+
15
+ const generate = async (ctx: C3Context) => {
16
+ await runFrameworkGenerator(ctx, ["create", ctx.project.name]);
17
+
18
+ logRaw("");
19
+ };
20
+
21
+ const configure = async (ctx: C3Context) => {
22
+ // Install the adapter
23
+ const pkg = `@sveltejs/adapter-cloudflare`;
24
+ await installPackages([pkg], {
25
+ dev: true,
26
+ startText: "Adding the Cloudflare Pages adapter",
27
+ doneText: `${brandColor(`installed`)} ${dim(pkg)}`,
28
+ });
29
+
30
+ updateSvelteConfig();
31
+ updateTypeDefinitions(ctx);
32
+ };
33
+
34
+ const updateSvelteConfig = () => {
35
+ // All we need to do is change the import statement in svelte.config.js
36
+ updateStatus(`Changing adapter in ${blue("svelte.config.js")}`);
37
+
38
+ transformFile("svelte.config.js", {
39
+ visitImportDeclaration: function (n) {
40
+ // importSource is the `x` in `import y from "x"`
41
+ const importSource = n.value.source;
42
+ if (importSource.value === "@sveltejs/adapter-auto") {
43
+ importSource.value = "@sveltejs/adapter-cloudflare";
44
+ }
45
+
46
+ // stop traversing this node
47
+ return false;
48
+ },
49
+ });
50
+ };
51
+
52
+ const updateTypeDefinitions = (ctx: C3Context) => {
53
+ if (!usesTypescript(ctx)) {
54
+ return;
55
+ }
56
+
57
+ updateStatus(`Updating global type definitions in ${blue("app.d.ts")}`);
58
+
59
+ const b = recast.types.builders;
60
+
61
+ transformFile("src/app.d.ts", {
62
+ visitTSModuleDeclaration(n) {
63
+ if (n.value.id.name === "App" && n.node.body) {
64
+ const moduleBlock = n.node
65
+ .body as recast.types.namedTypes.TSModuleBlock;
66
+
67
+ const platformInterface = b.tsInterfaceDeclaration(
68
+ b.identifier("Platform"),
69
+ b.tsInterfaceBody([
70
+ b.tsPropertySignature(
71
+ b.identifier("env"),
72
+ b.tsTypeAnnotation(b.tsTypeReference(b.identifier("Env"))),
73
+ ),
74
+ b.tsPropertySignature(
75
+ b.identifier("cf"),
76
+ b.tsTypeAnnotation(
77
+ b.tsTypeReference(b.identifier("CfProperties")),
78
+ ),
79
+ ),
80
+ b.tsPropertySignature(
81
+ b.identifier("ctx"),
82
+ b.tsTypeAnnotation(
83
+ b.tsTypeReference(b.identifier("ExecutionContext")),
84
+ ),
85
+ ),
86
+ ]),
87
+ );
88
+
89
+ moduleBlock.body.unshift(platformInterface);
90
+ }
91
+
92
+ this.traverse(n);
93
+ },
94
+ });
95
+ };
96
+
97
+ const config: TemplateConfig = {
98
+ configVersion: 1,
99
+ id: "svelte",
100
+ frameworkCli: "sv",
101
+ displayName: "SvelteKit",
102
+ platform: "pages",
103
+ copyFiles: {
104
+ variants: {
105
+ js: { path: "./js" },
106
+ ts: { path: "./ts" },
107
+ },
108
+ },
109
+ generate,
110
+ configure,
111
+ transformPackageJson: async (original: PackageJson, ctx: C3Context) => {
112
+ let scripts: Record<string, string> = {
113
+ preview: `${npm} run build && wrangler pages dev`,
114
+ deploy: `${npm} run build && wrangler pages deploy`,
115
+ };
116
+
117
+ if (usesTypescript(ctx)) {
118
+ const mv = platform() === "win32" ? "move" : "mv";
119
+ scripts = {
120
+ ...scripts,
121
+ "cf-typegen": `wrangler types && ${mv} worker-configuration.d.ts src/`,
122
+ };
123
+ }
124
+
125
+ return { scripts };
126
+ },
127
+ devScript: "dev",
128
+ deployScript: "deploy",
129
+ previewScript: "preview",
130
+ };
131
+ export default config;
@@ -0,0 +1,85 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ pages_build_output_dir = ".svelte-kit/cloudflare"
5
+
6
+ # Automatically place your workloads in an optimal location to minimize latency.
7
+ # If you are running back-end logic in a Pages Function, running it closer to your back-end infrastructure
8
+ # rather than the end user may result in better performance.
9
+ # Docs: https://developers.cloudflare.com/pages/functions/smart-placement/#smart-placement
10
+ # [placement]
11
+ # mode = "smart"
12
+
13
+ # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
14
+ # Docs:
15
+ # - https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
16
+ # Note: Use secrets to store sensitive data.
17
+ # - https://developers.cloudflare.com/pages/functions/bindings/#secrets
18
+ # [vars]
19
+ # MY_VARIABLE = "production_value"
20
+
21
+ # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
22
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#workers-ai
23
+ # [ai]
24
+ # binding = "AI"
25
+
26
+ # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
27
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#d1-databases
28
+ # [[d1_databases]]
29
+ # binding = "MY_DB"
30
+ # database_name = "my-database"
31
+ # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
32
+
33
+ # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
34
+ # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
35
+ # Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
36
+ # [[durable_objects.bindings]]
37
+ # name = "MY_DURABLE_OBJECT"
38
+ # class_name = "MyDurableObject"
39
+ # script_name = 'my-durable-object'
40
+
41
+ # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
42
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#kv-namespaces
43
+ # [[kv_namespaces]]
44
+ # binding = "MY_KV_NAMESPACE"
45
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
46
+
47
+ # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
48
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#queue-producers
49
+ # [[queues.producers]]
50
+ # binding = "MY_QUEUE"
51
+ # queue = "my-queue"
52
+
53
+ # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
54
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#r2-buckets
55
+ # [[r2_buckets]]
56
+ # binding = "MY_BUCKET"
57
+ # bucket_name = "my-bucket"
58
+
59
+ # Bind another Worker service. Use this binding to call another Worker without network overhead.
60
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#service-bindings
61
+ # [[services]]
62
+ # binding = "MY_SERVICE"
63
+ # service = "my-service"
64
+
65
+ # To use different bindings for preview and production environments, follow the examples below.
66
+ # When using environment-specific overrides for bindings, ALL bindings must be specified on a per-environment basis.
67
+ # Docs: https://developers.cloudflare.com/pages/functions/wrangler-configuration#environment-specific-overrides
68
+
69
+ ######## PREVIEW environment config ########
70
+
71
+ # [env.preview.vars]
72
+ # API_KEY = "xyz789"
73
+
74
+ # [[env.preview.kv_namespaces]]
75
+ # binding = "MY_KV_NAMESPACE"
76
+ # id = "<PREVIEW_NAMESPACE_ID>"
77
+
78
+ ######## PRODUCTION environment config ########
79
+
80
+ # [env.production.vars]
81
+ # API_KEY = "abc123"
82
+
83
+ # [[env.production.kv_namespaces]]
84
+ # binding = "MY_KV_NAMESPACE"
85
+ # id = "<PRODUCTION_NAMESPACE_ID>"
@@ -0,0 +1,85 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ pages_build_output_dir = ".svelte-kit/cloudflare"
5
+
6
+ # Automatically place your workloads in an optimal location to minimize latency.
7
+ # If you are running back-end logic in a Pages Function, running it closer to your back-end infrastructure
8
+ # rather than the end user may result in better performance.
9
+ # Docs: https://developers.cloudflare.com/pages/functions/smart-placement/#smart-placement
10
+ # [placement]
11
+ # mode = "smart"
12
+
13
+ # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
14
+ # Docs:
15
+ # - https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
16
+ # Note: Use secrets to store sensitive data.
17
+ # - https://developers.cloudflare.com/pages/functions/bindings/#secrets
18
+ # [vars]
19
+ # MY_VARIABLE = "production_value"
20
+
21
+ # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
22
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#workers-ai
23
+ # [ai]
24
+ # binding = "AI"
25
+
26
+ # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
27
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#d1-databases
28
+ # [[d1_databases]]
29
+ # binding = "MY_DB"
30
+ # database_name = "my-database"
31
+ # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
32
+
33
+ # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
34
+ # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
35
+ # Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
36
+ # [[durable_objects.bindings]]
37
+ # name = "MY_DURABLE_OBJECT"
38
+ # class_name = "MyDurableObject"
39
+ # script_name = 'my-durable-object'
40
+
41
+ # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
42
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#kv-namespaces
43
+ # [[kv_namespaces]]
44
+ # binding = "MY_KV_NAMESPACE"
45
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
46
+
47
+ # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
48
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#queue-producers
49
+ # [[queues.producers]]
50
+ # binding = "MY_QUEUE"
51
+ # queue = "my-queue"
52
+
53
+ # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
54
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#r2-buckets
55
+ # [[r2_buckets]]
56
+ # binding = "MY_BUCKET"
57
+ # bucket_name = "my-bucket"
58
+
59
+ # Bind another Worker service. Use this binding to call another Worker without network overhead.
60
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#service-bindings
61
+ # [[services]]
62
+ # binding = "MY_SERVICE"
63
+ # service = "my-service"
64
+
65
+ # To use different bindings for preview and production environments, follow the examples below.
66
+ # When using environment-specific overrides for bindings, ALL bindings must be specified on a per-environment basis.
67
+ # Docs: https://developers.cloudflare.com/pages/functions/wrangler-configuration#environment-specific-overrides
68
+
69
+ ######## PREVIEW environment config ########
70
+
71
+ # [env.preview.vars]
72
+ # API_KEY = "xyz789"
73
+
74
+ # [[env.preview.kv_namespaces]]
75
+ # binding = "MY_KV_NAMESPACE"
76
+ # id = "<PREVIEW_NAMESPACE_ID>"
77
+
78
+ ######## PRODUCTION environment config ########
79
+
80
+ # [env.production.vars]
81
+ # API_KEY = "abc123"
82
+
83
+ # [[env.production.kv_namespaces]]
84
+ # binding = "MY_KV_NAMESPACE"
85
+ # id = "<PRODUCTION_NAMESPACE_ID>"
@@ -0,0 +1,29 @@
1
+ import { runFrameworkGenerator } from "frameworks/index";
2
+ import { detectPackageManager } from "helpers/packageManagers";
3
+ import type { TemplateConfig } from "../../src/templates";
4
+ import type { C3Context } from "types";
5
+
6
+ const { npm } = detectPackageManager();
7
+
8
+ const generate = async (ctx: C3Context) => {
9
+ await runFrameworkGenerator(ctx, [ctx.project.name]);
10
+ };
11
+
12
+ const config: TemplateConfig = {
13
+ configVersion: 1,
14
+ id: "vue",
15
+ frameworkCli: "create-vue",
16
+ displayName: "Vue",
17
+ platform: "pages",
18
+ generate,
19
+ transformPackageJson: async () => ({
20
+ scripts: {
21
+ deploy: `${npm} run build && wrangler pages deploy ./dist`,
22
+ preview: `${npm} run build && wrangler pages dev ./dist`,
23
+ },
24
+ }),
25
+ devScript: "dev",
26
+ deployScript: "deploy",
27
+ previewScript: "preview",
28
+ };
29
+ export default config;
@@ -0,0 +1,98 @@
1
+ import { resolve } from "node:path";
2
+ import { logRaw } from "@cloudflare/cli";
3
+ import { brandColor, dim } from "@cloudflare/cli/colors";
4
+ import { spinner } from "@cloudflare/cli/interactive";
5
+ import { runFrameworkGenerator } from "frameworks/index";
6
+ import { readFile, readJSON, writeFile } from "helpers/files";
7
+ import { detectPackageManager } from "helpers/packageManagers";
8
+ import { installPackages } from "helpers/packages";
9
+ import type { TemplateConfig } from "../../src/templates";
10
+ import type { C3Context } from "types";
11
+
12
+ const { npm } = detectPackageManager();
13
+
14
+ const generate = async (ctx: C3Context) => {
15
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
16
+ logRaw("");
17
+ };
18
+
19
+ const configure = async (ctx: C3Context) => {
20
+ updateAngularJson(ctx);
21
+ await updateAppCode();
22
+ await installCFWorker();
23
+ };
24
+
25
+ async function installCFWorker() {
26
+ await installPackages(["@cloudflare/workers-types", "wrangler"], {
27
+ dev: true,
28
+ startText: "Installing adapter dependencies",
29
+ doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
30
+ });
31
+ }
32
+ async function updateAppCode() {
33
+ const s = spinner();
34
+ s.start(`Updating application code`);
35
+
36
+ // Update an app config file to:
37
+ // - add the `provideHttpClient(withFetch())` call to enable `fetch` usage in `HttpClient`
38
+ const appConfigPath = "src/app/app.config.ts";
39
+ const appConfig = readFile(resolve(appConfigPath));
40
+ const newAppConfig =
41
+ "import { provideHttpClient, withFetch } from '@angular/common/http';\n" +
42
+ appConfig.replace(
43
+ "providers: [",
44
+ "providers: [provideHttpClient(withFetch()), ",
45
+ );
46
+ writeFile(resolve(appConfigPath), newAppConfig);
47
+ s.stop(`${brandColor(`updated`)} ${dim(appConfigPath)}`);
48
+
49
+ // Remove unwanted dependencies
50
+ s.start(`Updating package.json`);
51
+ const packageJsonPath = resolve("package.json");
52
+ const packageManifest = readJSON(packageJsonPath);
53
+
54
+ delete packageManifest["dependencies"]["@angular/ssr"];
55
+ delete packageManifest["dependencies"]["express"];
56
+ delete packageManifest["devDependencies"]["@types/express"];
57
+
58
+ writeFile(packageJsonPath, JSON.stringify(packageManifest, null, 2));
59
+ s.stop(`${brandColor(`updated`)} ${dim(`\`package.json\``)}`);
60
+ }
61
+
62
+ function updateAngularJson(ctx: C3Context) {
63
+ const s = spinner();
64
+ s.start(`Updating angular.json config`);
65
+ const angularJson = readJSON(resolve("angular.json"));
66
+ // Update builder
67
+ const architectSection = angularJson.projects[ctx.project.name].architect;
68
+ architectSection.build.options.outputPath = "dist";
69
+ architectSection.build.options.assets.push("src/_routes.json");
70
+
71
+ writeFile(resolve("angular.json"), JSON.stringify(angularJson, null, 2));
72
+ s.stop(`${brandColor(`updated`)} ${dim(`\`angular.json\``)}`);
73
+ }
74
+
75
+ const config: TemplateConfig = {
76
+ configVersion: 1,
77
+ id: "angular",
78
+ frameworkCli: "@angular/create",
79
+ displayName: "Angular",
80
+ platform: "workers",
81
+ copyFiles: {
82
+ path: "./templates",
83
+ },
84
+ path: "templates-experimental/angular",
85
+ devScript: "start",
86
+ deployScript: "deploy",
87
+ generate,
88
+ configure,
89
+ transformPackageJson: async () => ({
90
+ scripts: {
91
+ start: `${npm} run build && wrangler dev`,
92
+ build: `ng build && ${npm} run process`,
93
+ process: "node ./tools/alter-polyfills.mjs",
94
+ deploy: `${npm} run build && wrangler deploy`,
95
+ },
96
+ }),
97
+ };
98
+ export default config;
@@ -0,0 +1,34 @@
1
+ import { renderApplication } from "@angular/platform-server";
2
+ import bootstrap from "./src/main.server";
3
+
4
+ interface Env {
5
+ ASSETS: { fetch: typeof fetch };
6
+ }
7
+
8
+ // We attach the Cloudflare `fetch()` handler to the global scope
9
+ // so that we can export it when we process the Angular output.
10
+ // See tools/bundle.mjs
11
+ async function workerFetchHandler(request: Request, env: Env) {
12
+ const url = new URL(request.url);
13
+ console.log("render SSR", url.href);
14
+
15
+ // Get the root `index.html` content.
16
+ const indexUrl = new URL("/index.html", url);
17
+ const indexResponse = await env.ASSETS.fetch(new Request(indexUrl));
18
+ const document = await indexResponse.text();
19
+
20
+ const content = await renderApplication(bootstrap, {
21
+ document,
22
+ url: url.pathname,
23
+ });
24
+
25
+ // console.log("rendered SSR", content);
26
+ return new Response(content, indexResponse);
27
+ }
28
+
29
+ export default {
30
+ fetch: (request: Request, env: Env) =>
31
+ (globalThis as any)["__zone_symbol__Promise"].resolve(
32
+ workerFetchHandler(request, env),
33
+ ),
34
+ };
@@ -0,0 +1,32 @@
1
+ import fs from "node:fs";
2
+ import { EOL } from "node:os";
3
+ import { join } from "node:path";
4
+ import path from "node:path";
5
+ import { fileURLToPath } from "node:url";
6
+ const dirname = path.dirname(fileURLToPath(import.meta.url));
7
+
8
+ /**
9
+ * Split by lines and comment the banner
10
+ * ```
11
+ * import { createRequire } from 'node:module';
12
+ * globalThis['require'] ??= createRequire(import.meta.url);
13
+ * ```
14
+ */
15
+ const serverPolyfillsFile = join(
16
+ dirname,
17
+ "../dist/server/polyfills.server.mjs"
18
+ );
19
+ const serverPolyfillsData = fs
20
+ .readFileSync(serverPolyfillsFile, "utf8")
21
+ .split(/\r?\n/);
22
+
23
+ for (let index = 0; index < 2; index++) {
24
+ if (serverPolyfillsData[index].includes("createRequire")) {
25
+ serverPolyfillsData[index] = "// " + serverPolyfillsData[index];
26
+ }
27
+ }
28
+
29
+ // Add needed polyfills
30
+ serverPolyfillsData.unshift(`globalThis['process'] = {};`);
31
+
32
+ fs.writeFileSync(serverPolyfillsFile, serverPolyfillsData.join(EOL));
@@ -0,0 +1,11 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ main = "./dist/server/server.mjs"
5
+ assets = { directory = "./dist/browser", binding = "ASSETS" }
6
+
7
+ # Workers Logs
8
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
9
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
10
+ [observability]
11
+ enabled = true