create-cloudflare 0.0.0-edec41591 → 0.0.0-edf169d15

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 (220) hide show
  1. package/dist/cli.js +14824 -14589
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +17 -10
  4. package/templates/analog/templates/worker-configuration.d.ts +1 -1
  5. package/templates/analog/templates/wrangler.jsonc +5 -0
  6. package/templates/angular/c3.ts +5 -98
  7. package/templates/angular/pages/c3.ts +134 -0
  8. package/templates/angular/pages/templates/src/server.ts +15 -0
  9. package/templates/angular/pages/templates/tools/copy-files.mjs +15 -0
  10. package/{templates-experimental/angular → templates/angular/workers}/c3.ts +46 -14
  11. package/templates/angular/workers/templates/src/server.ts +15 -0
  12. package/templates/angular/workers/templates/wrangler.jsonc +12 -0
  13. package/templates/astro/c3.ts +17 -33
  14. package/templates/astro/templates/js/wrangler.jsonc +8 -0
  15. package/templates/astro/templates/ts/worker-configuration.d.ts +4 -0
  16. package/templates/astro/templates/ts/wrangler.jsonc +8 -0
  17. package/templates/common/js/package.json +1 -1
  18. package/templates/common/js/wrangler.jsonc +8 -0
  19. package/templates/common/ts/package.json +1 -1
  20. package/templates/common/ts/src/index.ts +1 -1
  21. package/templates/common/ts/worker-configuration.d.ts +1 -1
  22. package/templates/common/ts/wrangler.jsonc +8 -0
  23. package/templates/docusaurus/c3.ts +5 -24
  24. package/templates/docusaurus/pages/c3.ts +30 -0
  25. package/{templates-experimental/docusaurus → templates/docusaurus/workers}/c3.ts +3 -2
  26. package/templates/docusaurus/workers/templates/wrangler.jsonc +10 -0
  27. package/templates/gatsby/c3.ts +5 -45
  28. package/templates/gatsby/pages/c3.ts +50 -0
  29. package/{templates-experimental/gatsby → templates/gatsby/workers}/c3.ts +2 -2
  30. package/templates/gatsby/workers/templates/wrangler.jsonc +10 -0
  31. package/templates/hello-world/c3.ts +17 -1
  32. package/templates/hello-world/js/package.json +3 -3
  33. package/templates/hello-world/js/test/index.spec.js +1 -1
  34. package/templates/hello-world/js/vitest.config.js +1 -1
  35. package/templates/hello-world/js/wrangler.jsonc +8 -0
  36. package/templates/hello-world/py/.python-version +1 -0
  37. package/templates/hello-world/py/README.md +23 -0
  38. package/templates/hello-world/py/package.json +1 -1
  39. package/templates/hello-world/py/pyproject.toml +9 -0
  40. package/templates/hello-world/py/uv.lock +22 -0
  41. package/templates/hello-world/py/wrangler.jsonc +9 -0
  42. package/templates/hello-world/ts/package.json +3 -3
  43. package/templates/hello-world/ts/src/index.ts +1 -1
  44. package/templates/hello-world/ts/test/tsconfig.json +1 -1
  45. package/templates/hello-world/ts/vitest.config.mts +1 -1
  46. package/templates/hello-world/ts/worker-configuration.d.ts +1 -1
  47. package/templates/hello-world/ts/wrangler.jsonc +8 -0
  48. package/templates/hello-world-durable-object/js/package.json +1 -1
  49. package/templates/hello-world-durable-object/js/src/index.js +3 -3
  50. package/templates/hello-world-durable-object/js/wrangler.jsonc +24 -0
  51. package/templates/hello-world-durable-object/ts/package.json +1 -1
  52. package/templates/hello-world-durable-object/ts/src/index.ts +4 -4
  53. package/templates/hello-world-durable-object/ts/wrangler.jsonc +24 -0
  54. package/templates/hono/c3.ts +1 -0
  55. package/templates/hono/templates/worker-configuration.d.ts +1 -1
  56. package/templates/hono/templates/wrangler.jsonc +8 -0
  57. package/templates/next/README.md +3 -4
  58. package/templates/next/app/js/app/api/hello/route.js +4 -4
  59. package/templates/next/app/ts/app/api/hello/route.ts +4 -5
  60. package/templates/next/c3.ts +16 -31
  61. package/templates/next/wrangler.jsonc +8 -0
  62. package/templates/nuxt/c3.ts +5 -130
  63. package/templates/nuxt/pages/c3.ts +145 -0
  64. package/templates/nuxt/pages/templates/worker-configuration.d.ts +4 -0
  65. package/templates/nuxt/pages/templates/wrangler.jsonc +5 -0
  66. package/{templates-experimental/nuxt → templates/nuxt/workers}/c3.ts +14 -4
  67. package/templates/nuxt/workers/templates/worker-configuration.d.ts +4 -0
  68. package/templates/nuxt/workers/templates/wrangler.jsonc +12 -0
  69. package/templates/openapi/ts/package.json +1 -1
  70. package/templates/openapi/ts/worker-configuration.d.ts +1 -1
  71. package/templates/openapi/ts/wrangler.jsonc +8 -0
  72. package/templates/pre-existing/c3.ts +3 -3
  73. package/templates/pre-existing/js/package.json +1 -1
  74. package/templates/queues/js/package.json +1 -1
  75. package/templates/queues/js/wrangler.jsonc +21 -0
  76. package/templates/queues/ts/package.json +1 -1
  77. package/templates/queues/ts/src/index.ts +1 -1
  78. package/templates/queues/ts/worker-configuration.d.ts +1 -1
  79. package/templates/queues/ts/wrangler.jsonc +21 -0
  80. package/templates/qwik/c3.ts +3 -2
  81. package/templates/qwik/templates/worker-configuration.d.ts +1 -1
  82. package/templates/qwik/templates/wrangler.jsonc +8 -0
  83. package/templates/react/c3.ts +5 -57
  84. package/templates/react/pages/c3.ts +62 -0
  85. package/templates/react/workers/c3.ts +183 -0
  86. package/templates/react/workers/js/api/index.js +13 -0
  87. package/templates/react/workers/js/src/App.css +45 -0
  88. package/templates/react/workers/js/src/App.jsx +58 -0
  89. package/templates/react/workers/js/src/assets/Cloudflare_Logo.svg +51 -0
  90. package/templates/react/workers/js/wrangler.jsonc +9 -0
  91. package/templates/react/workers/ts/api/index.ts +13 -0
  92. package/templates/react/workers/ts/src/App.css +45 -0
  93. package/templates/react/workers/ts/src/App.tsx +58 -0
  94. package/templates/react/workers/ts/src/assets/Cloudflare_Logo.svg +51 -0
  95. package/templates/react/workers/ts/tsconfig.worker.json +8 -0
  96. package/templates/react/workers/ts/worker-configuration.d.ts +5 -0
  97. package/templates/react/workers/ts/wrangler.jsonc +9 -0
  98. package/templates/remix/templates/worker-configuration.d.ts +1 -1
  99. package/templates/remix/templates/wrangler.jsonc +5 -0
  100. package/templates/scheduled/js/package.json +1 -1
  101. package/templates/scheduled/js/src/index.js +1 -1
  102. package/templates/scheduled/js/wrangler.jsonc +13 -0
  103. package/templates/scheduled/ts/package.json +1 -1
  104. package/templates/scheduled/ts/src/index.ts +4 -4
  105. package/templates/scheduled/ts/worker-configuration.d.ts +1 -1
  106. package/templates/scheduled/ts/wrangler.jsonc +13 -0
  107. package/templates/solid/c3.ts +1 -1
  108. package/templates/solid/templates/wrangler.jsonc +8 -0
  109. package/templates/svelte/c3.ts +31 -4
  110. package/templates/svelte/templates/wrangler.jsonc +5 -0
  111. package/templates/vue/c3.ts +5 -25
  112. package/templates/vue/pages/c3.ts +30 -0
  113. package/templates/vue/workers/c3.ts +98 -0
  114. package/templates/vue/workers/js/server/index.js +13 -0
  115. package/templates/vue/workers/js/src/App.vue +107 -0
  116. package/templates/vue/workers/js/src/components/HelloWorld.vue +47 -0
  117. package/templates/vue/workers/js/vite.config.js +21 -0
  118. package/templates/vue/workers/js/wrangler.jsonc +12 -0
  119. package/templates/vue/workers/ts/server/index.ts +13 -0
  120. package/templates/vue/workers/ts/src/App.vue +107 -0
  121. package/templates/vue/workers/ts/src/components/HelloWorld.vue +44 -0
  122. package/templates/vue/workers/ts/tsconfig.worker.json +8 -0
  123. package/templates/vue/workers/ts/vite.config.ts +21 -0
  124. package/templates/vue/workers/ts/worker-configuration.d.ts +6 -0
  125. package/templates/vue/workers/ts/wrangler.jsonc +12 -0
  126. package/templates-experimental/astro/c3.ts +17 -33
  127. package/templates-experimental/astro/templates/js/wrangler.jsonc +15 -0
  128. package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +4 -0
  129. package/templates-experimental/astro/templates/ts/wrangler.jsonc +15 -0
  130. package/templates-experimental/hello-world-assets-only/templates/wrangler.jsonc +10 -0
  131. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +1 -1
  132. package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +3 -3
  133. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.jsonc +28 -0
  134. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +1 -1
  135. package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +3 -3
  136. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.jsonc +28 -0
  137. package/templates-experimental/hello-world-with-assets/js/package.json +3 -3
  138. package/templates-experimental/hello-world-with-assets/js/vitest.config.js +1 -1
  139. package/templates-experimental/hello-world-with-assets/js/wrangler.jsonc +15 -0
  140. package/templates-experimental/hello-world-with-assets/py/package.json +1 -1
  141. package/templates-experimental/hello-world-with-assets/py/wrangler.jsonc +15 -0
  142. package/templates-experimental/hello-world-with-assets/ts/package.json +3 -3
  143. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +1 -1
  144. package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +1 -1
  145. package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +1 -1
  146. package/templates-experimental/hello-world-with-assets/ts/wrangler.jsonc +15 -0
  147. package/templates-experimental/hono/c3.ts +1 -0
  148. package/templates-experimental/hono/templates/worker-configuration.d.ts +1 -1
  149. package/templates-experimental/hono/templates/wrangler.jsonc +9 -0
  150. package/templates-experimental/next/c3.ts +39 -16
  151. package/templates-experimental/next/templates/.dev.vars +2 -0
  152. package/templates-experimental/next/templates/__dot__gitignore +2 -5
  153. package/templates-experimental/next/templates/cloudflare-env.d.ts +5 -0
  154. package/templates-experimental/next/templates/open-next.config.ts +6 -0
  155. package/templates-experimental/next/templates/wrangler.jsonc +12 -0
  156. package/templates-experimental/qwik/c3.ts +3 -2
  157. package/templates-experimental/qwik/templates/worker-configuration.d.ts +1 -1
  158. package/templates-experimental/qwik/templates/wrangler.jsonc +15 -0
  159. package/templates-experimental/solid/c3.ts +8 -51
  160. package/templates-experimental/solid/templates/wrangler.jsonc +15 -0
  161. package/templates-experimental/svelte/c3.ts +1 -4
  162. package/templates-experimental/svelte/templates/wrangler.jsonc +12 -0
  163. package/templates/analog/templates/wrangler.toml +0 -85
  164. package/templates/angular/templates/server.ts +0 -34
  165. package/templates/angular/templates/tools/alter-polyfills.mjs +0 -27
  166. package/templates/angular/templates/tools/copy-files.mjs +0 -9
  167. package/templates/angular/templates/tools/paths.mjs +0 -9
  168. package/templates/astro/templates/wrangler.toml +0 -86
  169. package/templates/common/js/wrangler.toml +0 -113
  170. package/templates/common/ts/wrangler.toml +0 -113
  171. package/templates/hello-world/js/wrangler.toml +0 -114
  172. package/templates/hello-world/py/wrangler.toml +0 -114
  173. package/templates/hello-world/ts/wrangler.toml +0 -114
  174. package/templates/hello-world-durable-object/js/wrangler.toml +0 -113
  175. package/templates/hello-world-durable-object/ts/wrangler.toml +0 -113
  176. package/templates/hono/templates/wrangler.toml +0 -113
  177. package/templates/next/wrangler.toml +0 -86
  178. package/templates/nuxt/templates/worker-configuration.d.ts +0 -4
  179. package/templates/nuxt/templates/wrangler.toml +0 -86
  180. package/templates/openapi/ts/wrangler.toml +0 -113
  181. package/templates/pre-existing/js/wrangler.toml +0 -4
  182. package/templates/queues/js/wrangler.toml +0 -118
  183. package/templates/queues/ts/wrangler.toml +0 -118
  184. package/templates/qwik/templates/wrangler.toml +0 -86
  185. package/templates/remix/templates/wrangler.toml +0 -85
  186. package/templates/scheduled/js/wrangler.toml +0 -119
  187. package/templates/scheduled/ts/wrangler.toml +0 -119
  188. package/templates/solid/templates/wrangler.toml +0 -84
  189. package/templates/svelte/js/wrangler.toml +0 -85
  190. package/templates/svelte/ts/wrangler.toml +0 -85
  191. package/templates-experimental/angular/templates/server.ts +0 -34
  192. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +0 -32
  193. package/templates-experimental/angular/templates/wrangler.toml +0 -11
  194. package/templates-experimental/astro/templates/wrangler.toml +0 -12
  195. package/templates-experimental/docusaurus/templates/wrangler.toml +0 -10
  196. package/templates-experimental/gatsby/templates/wrangler.toml +0 -10
  197. package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +0 -10
  198. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +0 -24
  199. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +0 -24
  200. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +0 -12
  201. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +0 -12
  202. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +0 -12
  203. package/templates-experimental/hono/templates/wrangler.toml +0 -5
  204. package/templates-experimental/next/templates/env.d.ts +0 -5
  205. package/templates-experimental/next/templates/wrangler.toml +0 -12
  206. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +0 -27
  207. package/templates-experimental/nuxt/templates/worker-configuration.d.ts +0 -4
  208. package/templates-experimental/nuxt/templates/wrangler.toml +0 -11
  209. package/templates-experimental/qwik/templates/wrangler.toml +0 -12
  210. package/templates-experimental/solid/templates/wrangler.toml +0 -12
  211. package/templates-experimental/svelte/js/wrangler.toml +0 -11
  212. package/templates-experimental/svelte/ts/wrangler.toml +0 -11
  213. /package/templates/angular/{templates → pages/templates}/src/_routes.json +0 -0
  214. /package/templates/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  215. /package/{templates-experimental/nuxt → templates/nuxt/pages}/templates/env.d.ts +0 -0
  216. /package/templates/nuxt/{templates → workers/templates}/env.d.ts +0 -0
  217. /package/templates-experimental/astro/templates/{public → js/public}/.assetsignore +0 -0
  218. /package/templates-experimental/{svelte/js/static → astro/templates/ts/public}/.assetsignore +0 -0
  219. /package/templates-experimental/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  220. /package/templates-experimental/svelte/{ts → templates}/static/.assetsignore +0 -0
@@ -1,37 +1,60 @@
1
1
  import { brandColor, dim } from "@cloudflare/cli/colors";
2
+ import { spinner } from "@cloudflare/cli/interactive";
2
3
  import { runFrameworkGenerator } from "frameworks/index";
4
+ import { readFile, usesTypescript, writeFile } from "helpers/files";
3
5
  import { installPackages } from "helpers/packages";
4
6
  import type { TemplateConfig } from "../../src/templates";
5
7
  import type { C3Context } from "types";
6
8
 
7
9
  const generate = async (ctx: C3Context) => {
8
- await runFrameworkGenerator(ctx, [
9
- ctx.project.name,
10
- "--ts",
11
- "--tailwind",
12
- "--eslint",
13
- "--app",
14
- "--import-alias",
15
- "@/*",
16
- "--src-dir",
17
- ]);
10
+ await runFrameworkGenerator(ctx, [ctx.project.name]);
18
11
  };
19
12
 
20
- const configure = async () => {
21
- const packages = ["@opennextjs/cloudflare", "@cloudflare/workers-types"];
13
+ const configure = async (ctx: C3Context) => {
14
+ const packages = [
15
+ "@opennextjs/cloudflare@0.5.x",
16
+ "@cloudflare/workers-types",
17
+ ];
22
18
  await installPackages(packages, {
23
19
  dev: true,
24
20
  startText: "Adding the Cloudflare adapter",
25
21
  doneText: `${brandColor(`installed`)} ${dim(packages.join(", "))}`,
26
22
  });
23
+
24
+ const usesTs = usesTypescript(ctx);
25
+
26
+ updateNextConfig(usesTs);
27
+ };
28
+
29
+ const updateNextConfig = (usesTs: boolean) => {
30
+ const s = spinner();
31
+
32
+ const configFile = `next.config.${usesTs ? "ts" : "mjs"}`;
33
+ s.start(`Updating \`${configFile}\``);
34
+
35
+ const configContent = readFile(configFile);
36
+
37
+ const updatedConfigFile =
38
+ configContent +
39
+ `
40
+ // added by create cloudflare to enable calling \`getCloudflareContext()\` in \`next dev\`
41
+ import { initOpenNextCloudflareForDev } from '@opennextjs/cloudflare';
42
+ initOpenNextCloudflareForDev();
43
+ `.replace(/\n\t*/g, "\n");
44
+
45
+ writeFile(configFile, updatedConfigFile);
46
+
47
+ s.stop(`${brandColor(`updated`)} ${dim(`\`${configFile}\``)}`);
27
48
  };
28
49
 
29
50
  export default {
30
51
  configVersion: 1,
31
52
  id: "next",
32
53
  frameworkCli: "create-next-app",
54
+ // TODO: Stop using a pinned version when the template graduates.
55
+ frameworkCliPinnedVersion: "~15.2.2",
33
56
  platform: "workers",
34
- displayName: "Next (using Node.js compat + Workers Assets)",
57
+ displayName: "Next.js (using Node.js compat + Workers Assets)",
35
58
  path: "templates-experimental/next",
36
59
  copyFiles: {
37
60
  path: "./templates",
@@ -40,9 +63,9 @@ export default {
40
63
  configure,
41
64
  transformPackageJson: async () => ({
42
65
  scripts: {
43
- deploy: `cloudflare && wrangler deploy`,
44
- preview: `cloudflare && wrangler dev`,
45
- "cf-typegen": `wrangler types --env-interface CloudflareEnv env.d.ts`,
66
+ deploy: `opennextjs-cloudflare && wrangler deploy`,
67
+ preview: `opennextjs-cloudflare && wrangler dev`,
68
+ "cf-typegen": `wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts`,
46
69
  },
47
70
  }),
48
71
  devScript: "dev",
@@ -0,0 +1,2 @@
1
+ # Load .env.development* files when running `wrangler dev`
2
+ NEXTJS_ENV=development
@@ -35,8 +35,5 @@ yarn-error.log*
35
35
  *.tsbuildinfo
36
36
  next-env.d.ts
37
37
 
38
-
39
- # Cloudflare related
40
- /.save.next
41
- /.worker-next
42
- /.wrangler
38
+ # OpenNext
39
+ /.open-next
@@ -0,0 +1,5 @@
1
+ // Generated by Wrangler
2
+ // by running `wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts`
3
+
4
+ interface CloudflareEnv {
5
+ }
@@ -0,0 +1,6 @@
1
+ import { defineCloudflareConfig } from "@opennextjs/cloudflare";
2
+ import kvIncrementalCache from "@opennextjs/cloudflare/kv-cache";
3
+
4
+ export default defineCloudflareConfig({
5
+ incrementalCache: kvIncrementalCache,
6
+ });
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "<app-name>",
3
+ "main": ".open-next/worker.js",
4
+ "compatibility_date": "2024-09-26",
5
+ "compatibility_flags": [
6
+ "nodejs_compat"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSETS",
10
+ "directory": ".open-next/assets"
11
+ }
12
+ }
@@ -10,7 +10,7 @@ import * as recast from "recast";
10
10
  import type { TemplateConfig } from "../../src/templates";
11
11
  import type { C3Context } from "types";
12
12
 
13
- const { npm, npx } = detectPackageManager();
13
+ const { npm, npx, name } = detectPackageManager();
14
14
 
15
15
  const generate = async (ctx: C3Context) => {
16
16
  await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
@@ -18,7 +18,8 @@ const generate = async (ctx: C3Context) => {
18
18
 
19
19
  const configure = async (ctx: C3Context) => {
20
20
  // Add the pages integration
21
- const cmd = [npx, "qwik", "add", "cloudflare-pages"];
21
+ // For some reason `pnpx qwik add` fails for qwik so we use `pnpm qwik add` instead.
22
+ const cmd = [name === "pnpm" ? npm : npx, "qwik", "add", "cloudflare-pages"];
22
23
  endSection(`Running ${quoteShellArgs(cmd)}`);
23
24
  await runCommand(cmd);
24
25
 
@@ -1,4 +1,4 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
4
  }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "./dist/_worker.js",
4
+ "compatibility_date": "<TBD>",
5
+ "compatibility_flags": [
6
+ "nodejs_compat"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSET",
10
+ "directory": "./dist"
11
+ },
12
+ "observability": {
13
+ "enabled": true
14
+ }
15
+ }
@@ -2,6 +2,7 @@ import { logRaw, updateStatus } from "@cloudflare/cli";
2
2
  import { blue, brandColor, dim } from "@cloudflare/cli/colors";
3
3
  import { runFrameworkGenerator } from "frameworks/index";
4
4
  import { mergeObjectProperties, transformFile } from "helpers/codemod";
5
+ import { getWorkerdCompatibilityDate } from "helpers/compatDate";
5
6
  import { usesTypescript } from "helpers/files";
6
7
  import { detectPackageManager } from "helpers/packageManagers";
7
8
  import { installPackages } from "helpers/packages";
@@ -30,6 +31,8 @@ const configure = async (ctx: C3Context) => {
30
31
  usesTypescript(ctx);
31
32
  const filePath = `app.config.${usesTypescript(ctx) ? "ts" : "js"}`;
32
33
 
34
+ const compatDate = await getWorkerdCompatibilityDate();
35
+
33
36
  updateStatus(`Updating configuration in ${blue(filePath)}`);
34
37
 
35
38
  transformFile(filePath, {
@@ -46,60 +49,14 @@ const configure = async (ctx: C3Context) => {
46
49
  b.objectProperty(
47
50
  b.identifier("server"),
48
51
  b.objectExpression([
49
- // preset: "cloudflare-pages"
52
+ // preset: "cloudflare_module"
50
53
  b.objectProperty(
51
54
  b.identifier("preset"),
52
- b.stringLiteral("cloudflare-pages"),
53
- ),
54
- // output: {
55
- // dir: "{{ rootDir }}/dist",
56
- // publicDir: "{{ output.dir }}/public",
57
- // serverDir: "{{ output.dir }}/worker",
58
- // },
59
- b.objectProperty(
60
- b.identifier("output"),
61
- b.objectExpression([
62
- b.objectProperty(
63
- b.identifier("dir"),
64
- b.stringLiteral("{{ rootDir }}/dist"),
65
- ),
66
- b.objectProperty(
67
- b.identifier("publicDir"),
68
- b.stringLiteral("{{ output.dir }}/public"),
69
- ),
70
- b.objectProperty(
71
- b.identifier("serverDir"),
72
- b.stringLiteral("{{ output.dir }}/worker"),
73
- ),
74
- ]),
75
- ),
76
- // rollupConfig: {
77
- // external: ["node:async_hooks"],
78
- // },
79
- b.objectProperty(
80
- b.identifier("rollupConfig"),
81
- b.objectExpression([
82
- b.objectProperty(
83
- b.identifier("external"),
84
- b.arrayExpression([b.stringLiteral("node:async_hooks")]),
85
- ),
86
- ]),
55
+ b.stringLiteral("cloudflare_module"),
87
56
  ),
88
- // hooks: {
89
- // // Prevent the Pages preset from writing the _routes.json etc.
90
- // compiled() {},
91
- // },
92
57
  b.objectProperty(
93
- b.identifier("hooks"),
94
- b.objectExpression([
95
- b.objectMethod(
96
- "method",
97
- b.identifier("compiled"),
98
- [],
99
- b.blockStatement([]),
100
- false,
101
- ),
102
- ]),
58
+ b.identifier("compatibilityDate"),
59
+ b.stringLiteral(compatDate),
103
60
  ),
104
61
  ]),
105
62
  ),
@@ -115,7 +72,7 @@ const config: TemplateConfig = {
115
72
  configVersion: 1,
116
73
  id: "solid",
117
74
  frameworkCli: "create-solid",
118
- displayName: "Solid",
75
+ displayName: "SolidStart",
119
76
  platform: "workers",
120
77
  copyFiles: {
121
78
  path: "./templates",
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "./.output/server/index.mjs",
4
+ "compatibility_date": "<TBD>",
5
+ "compatibility_flags": [
6
+ "nodejs_compat"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSETS",
10
+ "directory": "./.output/public"
11
+ },
12
+ "observability": {
13
+ "enabled": true
14
+ }
15
+ }
@@ -101,10 +101,7 @@ const config: TemplateConfig = {
101
101
  displayName: "SvelteKit",
102
102
  platform: "workers",
103
103
  copyFiles: {
104
- variants: {
105
- js: { path: "./js" },
106
- ts: { path: "./ts" },
107
- },
104
+ path: "./templates",
108
105
  },
109
106
  path: "templates-experimental/svelte",
110
107
  generate,
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": ".svelte-kit/cloudflare/_worker.js",
4
+ "compatibility_date": "<TBD>",
5
+ "assets": {
6
+ "binding": "ASSETS",
7
+ "directory": ".svelte-kit/cloudflare"
8
+ },
9
+ "observability": {
10
+ "enabled": true
11
+ }
12
+ }
@@ -1,85 +0,0 @@
1
- #:schema node_modules/wrangler/config-schema.json
2
- name = "<TBD>"
3
- compatibility_date = "<TBD>"
4
- pages_build_output_dir = "./dist/analog/public"
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
- # Note: Use secrets to store sensitive data.
15
- # Docs:
16
- # - https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
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>"
@@ -1,34 +0,0 @@
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("/", 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
- };
@@ -1,27 +0,0 @@
1
- import fs from "node:fs";
2
- import { EOL } from "node:os";
3
- import { join } from "node:path";
4
- import { worker } from "./paths.mjs";
5
-
6
- /**
7
- * Split by lines and comment the banner
8
- * ```
9
- * import { createRequire } from 'node:module';
10
- * globalThis['require'] ??= createRequire(import.meta.url);
11
- * ```
12
- */
13
- const serverPolyfillsFile = join(worker, "polyfills.server.mjs");
14
- const serverPolyfillsData = fs
15
- .readFileSync(serverPolyfillsFile, "utf8")
16
- .split(/\r?\n/);
17
-
18
- for (let index = 0; index < 2; index++) {
19
- if (serverPolyfillsData[index].includes("createRequire")) {
20
- serverPolyfillsData[index] = "// " + serverPolyfillsData[index];
21
- }
22
- }
23
-
24
- // Add needed polyfills
25
- serverPolyfillsData.unshift(`globalThis['process'] = {};`);
26
-
27
- fs.writeFileSync(serverPolyfillsFile, serverPolyfillsData.join(EOL));
@@ -1,9 +0,0 @@
1
- // Copy the files over so that they can be uploaded by the pages publish command.
2
- import fs from "node:fs";
3
- import { join } from "node:path";
4
- import { client, cloudflare, ssr, worker } from "./paths.mjs";
5
-
6
- fs.cpSync(client, cloudflare, { recursive: true });
7
- fs.cpSync(ssr, worker, { recursive: true });
8
-
9
- fs.renameSync(join(worker, "server.mjs"), join(worker, "index.js"));
@@ -1,9 +0,0 @@
1
- import path from "node:path";
2
- import { fileURLToPath } from "node:url";
3
-
4
- const dirname = path.dirname(fileURLToPath(import.meta.url));
5
- export const root = path.resolve(dirname, "..");
6
- export const client = path.resolve(root, "dist/browser");
7
- export const ssr = path.resolve(root, "dist/server");
8
- export const cloudflare = path.resolve(root, "dist/cloudflare");
9
- export const worker = path.resolve(cloudflare, "_worker.js");
@@ -1,86 +0,0 @@
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
- # Docs:
16
- # - https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
17
- # Note: Use secrets to store sensitive data.
18
- # - https://developers.cloudflare.com/pages/functions/bindings/#secrets
19
- # [vars]
20
- # MY_VARIABLE = "production_value"
21
-
22
- # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
23
- # Docs: https://developers.cloudflare.com/pages/functions/bindings/#workers-ai
24
- # [ai]
25
- # binding = "AI"
26
-
27
- # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
28
- # Docs: https://developers.cloudflare.com/pages/functions/bindings/#d1-databases
29
- # [[d1_databases]]
30
- # binding = "MY_DB"
31
- # database_name = "my-database"
32
- # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
33
-
34
- # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
35
- # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
36
- # Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
37
- # [[durable_objects.bindings]]
38
- # name = "MY_DURABLE_OBJECT"
39
- # class_name = "MyDurableObject"
40
- # script_name = 'my-durable-object'
41
-
42
- # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
43
- # Docs: https://developers.cloudflare.com/pages/functions/bindings/#kv-namespaces
44
- # [[kv_namespaces]]
45
- # binding = "MY_KV_NAMESPACE"
46
- # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
47
-
48
- # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
49
- # Docs: https://developers.cloudflare.com/pages/functions/bindings/#queue-producers
50
- # [[queues.producers]]
51
- # binding = "MY_QUEUE"
52
- # queue = "my-queue"
53
-
54
- # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
55
- # Docs: https://developers.cloudflare.com/pages/functions/bindings/#r2-buckets
56
- # [[r2_buckets]]
57
- # binding = "MY_BUCKET"
58
- # bucket_name = "my-bucket"
59
-
60
- # Bind another Worker service. Use this binding to call another Worker without network overhead.
61
- # Docs: https://developers.cloudflare.com/pages/functions/bindings/#service-bindings
62
- # [[services]]
63
- # binding = "MY_SERVICE"
64
- # service = "my-service"
65
-
66
- # To use different bindings for preview and production environments, follow the examples below.
67
- # When using environment-specific overrides for bindings, ALL bindings must be specified on a per-environment basis.
68
- # Docs: https://developers.cloudflare.com/pages/functions/wrangler-configuration#environment-specific-overrides
69
-
70
- ######## PREVIEW environment config ########
71
-
72
- # [env.preview.vars]
73
- # API_KEY = "xyz789"
74
-
75
- # [[env.preview.kv_namespaces]]
76
- # binding = "MY_KV_NAMESPACE"
77
- # id = "<PREVIEW_NAMESPACE_ID>"
78
-
79
- ######## PRODUCTION environment config ########
80
-
81
- # [env.production.vars]
82
- # API_KEY = "abc123"
83
-
84
- # [[env.production.kv_namespaces]]
85
- # binding = "MY_KV_NAMESPACE"
86
- # id = "<PRODUCTION_NAMESPACE_ID>"