create-cloudflare 0.0.0-ffe8d10cb → 0.0.0-fff677e35

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 (184) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.js +7699 -9272
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/package.json +12 -7
  5. package/templates/analog/templates/worker-configuration.d.ts +1 -1
  6. package/templates/analog/templates/wrangler.jsonc +5 -0
  7. package/templates/angular/c3.ts +25 -13
  8. package/templates/angular/templates/src/server.ts +15 -0
  9. package/templates/angular/templates/tools/copy-files.mjs +8 -2
  10. package/templates/astro/c3.ts +17 -33
  11. package/templates/astro/templates/js/wrangler.jsonc +8 -0
  12. package/templates/astro/templates/ts/worker-configuration.d.ts +4 -0
  13. package/templates/astro/templates/ts/wrangler.jsonc +8 -0
  14. package/templates/common/js/package.json +1 -1
  15. package/templates/common/js/wrangler.jsonc +8 -0
  16. package/templates/common/ts/package.json +1 -1
  17. package/templates/common/ts/src/index.ts +1 -1
  18. package/templates/common/ts/tsconfig.json +37 -95
  19. package/templates/common/ts/worker-configuration.d.ts +1 -1
  20. package/templates/common/ts/wrangler.jsonc +8 -0
  21. package/templates/docusaurus/c3.ts +2 -1
  22. package/templates/hello-world/js/package.json +3 -3
  23. package/templates/hello-world/js/test/index.spec.js +1 -1
  24. package/templates/hello-world/js/vitest.config.js +1 -1
  25. package/templates/hello-world/js/wrangler.jsonc +8 -0
  26. package/templates/hello-world/py/package.json +1 -1
  27. package/templates/hello-world/py/wrangler.jsonc +9 -0
  28. package/templates/hello-world/ts/package.json +3 -3
  29. package/templates/hello-world/ts/src/index.ts +1 -1
  30. package/templates/hello-world/ts/test/tsconfig.json +1 -1
  31. package/templates/hello-world/ts/tsconfig.json +36 -95
  32. package/templates/hello-world/ts/vitest.config.mts +1 -1
  33. package/templates/hello-world/ts/worker-configuration.d.ts +1 -1
  34. package/templates/hello-world/ts/wrangler.jsonc +8 -0
  35. package/templates/hello-world-durable-object/js/package.json +1 -1
  36. package/templates/hello-world-durable-object/js/src/index.js +3 -3
  37. package/templates/hello-world-durable-object/js/wrangler.jsonc +24 -0
  38. package/templates/hello-world-durable-object/ts/package.json +1 -1
  39. package/templates/hello-world-durable-object/ts/src/index.ts +4 -4
  40. package/templates/hello-world-durable-object/ts/tsconfig.json +36 -95
  41. package/templates/hello-world-durable-object/ts/wrangler.jsonc +24 -0
  42. package/templates/hono/templates/worker-configuration.d.ts +1 -1
  43. package/templates/hono/templates/wrangler.jsonc +8 -0
  44. package/templates/next/README.md +3 -4
  45. package/templates/next/app/js/app/api/hello/route.js +4 -4
  46. package/templates/next/app/ts/app/api/hello/route.ts +4 -5
  47. package/templates/next/c3.ts +12 -30
  48. package/templates/next/wrangler.jsonc +8 -0
  49. package/templates/nuxt/c3.ts +1 -1
  50. package/templates/nuxt/templates/worker-configuration.d.ts +1 -1
  51. package/templates/nuxt/templates/wrangler.jsonc +8 -0
  52. package/templates/openapi/ts/package.json +1 -1
  53. package/templates/openapi/ts/worker-configuration.d.ts +1 -1
  54. package/templates/openapi/ts/wrangler.jsonc +8 -0
  55. package/templates/pre-existing/c3.ts +29 -10
  56. package/templates/pre-existing/js/package.json +1 -1
  57. package/templates/pre-existing/js/wrangler.jsonc +5 -0
  58. package/templates/queues/js/package.json +1 -1
  59. package/templates/queues/js/wrangler.jsonc +21 -0
  60. package/templates/queues/ts/package.json +1 -1
  61. package/templates/queues/ts/src/index.ts +1 -1
  62. package/templates/queues/ts/tsconfig.json +36 -95
  63. package/templates/queues/ts/worker-configuration.d.ts +1 -1
  64. package/templates/queues/ts/wrangler.jsonc +21 -0
  65. package/templates/qwik/templates/worker-configuration.d.ts +1 -1
  66. package/templates/qwik/templates/wrangler.jsonc +8 -0
  67. package/templates/remix/templates/worker-configuration.d.ts +1 -1
  68. package/templates/remix/templates/wrangler.jsonc +5 -0
  69. package/templates/scheduled/js/package.json +1 -1
  70. package/templates/scheduled/js/src/index.js +1 -1
  71. package/templates/scheduled/js/wrangler.jsonc +13 -0
  72. package/templates/scheduled/ts/package.json +1 -1
  73. package/templates/scheduled/ts/src/index.ts +4 -4
  74. package/templates/scheduled/ts/tsconfig.json +36 -95
  75. package/templates/scheduled/ts/worker-configuration.d.ts +1 -1
  76. package/templates/scheduled/ts/wrangler.jsonc +13 -0
  77. package/templates/solid/c3.ts +1 -1
  78. package/templates/solid/templates/wrangler.jsonc +8 -0
  79. package/templates/svelte/c3.ts +34 -7
  80. package/templates/svelte/templates/wrangler.jsonc +5 -0
  81. package/templates-experimental/angular/c3.ts +21 -7
  82. package/templates-experimental/angular/templates/src/server.ts +15 -0
  83. package/templates-experimental/angular/templates/wrangler.jsonc +12 -0
  84. package/templates-experimental/astro/c3.ts +17 -33
  85. package/templates-experimental/astro/templates/js/wrangler.jsonc +15 -0
  86. package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +4 -0
  87. package/templates-experimental/astro/templates/ts/wrangler.jsonc +15 -0
  88. package/templates-experimental/docusaurus/templates/wrangler.jsonc +10 -0
  89. package/templates-experimental/gatsby/templates/wrangler.jsonc +10 -0
  90. package/templates-experimental/hello-world-assets-only/templates/wrangler.jsonc +10 -0
  91. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +1 -1
  92. package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +3 -3
  93. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.jsonc +28 -0
  94. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +1 -1
  95. package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +3 -3
  96. package/templates-experimental/hello-world-durable-object-with-assets/ts/tsconfig.json +36 -95
  97. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.jsonc +28 -0
  98. package/templates-experimental/hello-world-with-assets/js/package.json +3 -3
  99. package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +3 -3
  100. package/templates-experimental/hello-world-with-assets/js/vitest.config.js +1 -1
  101. package/templates-experimental/hello-world-with-assets/js/wrangler.jsonc +15 -0
  102. package/templates-experimental/hello-world-with-assets/py/package.json +1 -1
  103. package/templates-experimental/hello-world-with-assets/py/wrangler.jsonc +15 -0
  104. package/templates-experimental/hello-world-with-assets/ts/package.json +3 -3
  105. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +1 -1
  106. package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +5 -5
  107. package/templates-experimental/hello-world-with-assets/ts/tsconfig.json +36 -95
  108. package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +1 -1
  109. package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +1 -1
  110. package/templates-experimental/hello-world-with-assets/ts/wrangler.jsonc +15 -0
  111. package/templates-experimental/hono/c3.ts +43 -0
  112. package/templates-experimental/hono/templates/public/index.html +19 -0
  113. package/templates-experimental/hono/templates/src/index.ts +9 -0
  114. package/templates-experimental/hono/templates/worker-configuration.d.ts +4 -0
  115. package/templates-experimental/hono/templates/wrangler.jsonc +9 -0
  116. package/templates-experimental/next/c3.ts +84 -0
  117. package/templates-experimental/next/templates/.dev.vars +2 -0
  118. package/templates-experimental/next/templates/__dot__gitignore +39 -0
  119. package/templates-experimental/next/templates/cloudflare-env.d.ts +5 -0
  120. package/templates-experimental/next/templates/open-next.config.ts +28 -0
  121. package/templates-experimental/next/templates/wrangler.jsonc +13 -0
  122. package/templates-experimental/nuxt/c3.ts +2 -2
  123. package/templates-experimental/nuxt/templates/worker-configuration.d.ts +1 -1
  124. package/templates-experimental/nuxt/templates/wrangler.jsonc +12 -0
  125. package/templates-experimental/qwik/templates/worker-configuration.d.ts +1 -1
  126. package/templates-experimental/qwik/templates/wrangler.jsonc +15 -0
  127. package/templates-experimental/remix/c3.ts +2 -27
  128. package/templates-experimental/remix/templates/public/.assetsignore +0 -4
  129. package/templates-experimental/remix/templates/wrangler.toml +7 -1
  130. package/templates-experimental/solid/c3.ts +8 -51
  131. package/templates-experimental/solid/templates/wrangler.jsonc +15 -0
  132. package/templates-experimental/svelte/c3.ts +4 -7
  133. package/templates-experimental/svelte/templates/wrangler.jsonc +12 -0
  134. package/templates-experimental/vue/c3.ts +33 -0
  135. package/templates-experimental/vue/templates/wrangler.jsonc +10 -0
  136. package/templates/analog/templates/wrangler.toml +0 -85
  137. package/templates/angular/templates/server.ts +0 -34
  138. package/templates/angular/templates/tools/alter-polyfills.mjs +0 -27
  139. package/templates/angular/templates/tools/paths.mjs +0 -9
  140. package/templates/astro/templates/wrangler.toml +0 -85
  141. package/templates/common/js/wrangler.toml +0 -107
  142. package/templates/common/ts/wrangler.toml +0 -107
  143. package/templates/hello-world/js/wrangler.toml +0 -108
  144. package/templates/hello-world/py/wrangler.toml +0 -108
  145. package/templates/hello-world/ts/wrangler.toml +0 -108
  146. package/templates/hello-world-durable-object/js/wrangler.toml +0 -107
  147. package/templates/hello-world-durable-object/ts/wrangler.toml +0 -107
  148. package/templates/hono/templates/wrangler.toml +0 -107
  149. package/templates/next/wrangler.toml +0 -86
  150. package/templates/nuxt/templates/wrangler.toml +0 -85
  151. package/templates/openapi/ts/wrangler.toml +0 -107
  152. package/templates/pre-existing/js/wrangler.toml +0 -4
  153. package/templates/queues/js/wrangler.toml +0 -112
  154. package/templates/queues/ts/wrangler.toml +0 -112
  155. package/templates/qwik/templates/wrangler.toml +0 -86
  156. package/templates/remix/templates/wrangler.toml +0 -85
  157. package/templates/scheduled/js/wrangler.toml +0 -113
  158. package/templates/scheduled/ts/wrangler.toml +0 -113
  159. package/templates/solid/templates/wrangler.toml +0 -84
  160. package/templates/svelte/js/wrangler.toml +0 -85
  161. package/templates/svelte/ts/wrangler.toml +0 -85
  162. package/templates-experimental/angular/templates/server.ts +0 -34
  163. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +0 -32
  164. package/templates-experimental/angular/templates/wrangler.toml +0 -5
  165. package/templates-experimental/astro/templates/wrangler.toml +0 -6
  166. package/templates-experimental/docusaurus/templates/wrangler.toml +0 -4
  167. package/templates-experimental/gatsby/templates/wrangler.toml +0 -4
  168. package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +0 -4
  169. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +0 -19
  170. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +0 -19
  171. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +0 -6
  172. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +0 -6
  173. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +0 -6
  174. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +0 -27
  175. package/templates-experimental/nuxt/templates/wrangler.toml +0 -5
  176. package/templates-experimental/qwik/templates/wrangler.toml +0 -6
  177. package/templates-experimental/solid/templates/wrangler.toml +0 -6
  178. package/templates-experimental/svelte/js/wrangler.toml +0 -5
  179. package/templates-experimental/svelte/ts/wrangler.toml +0 -5
  180. /package/templates/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  181. /package/templates-experimental/astro/templates/{public → js/public}/.assetsignore +0 -0
  182. /package/templates-experimental/{svelte/js/static → astro/templates/ts/public}/.assetsignore +0 -0
  183. /package/templates-experimental/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  184. /package/templates-experimental/svelte/{ts → templates}/static/.assetsignore +0 -0
@@ -24,7 +24,7 @@ const generate = async (ctx: C3Context) => {
24
24
  gitFlag,
25
25
  ]);
26
26
 
27
- writeFile("./.node-version", "17");
27
+ writeFile("./.node-version", "18");
28
28
 
29
29
  logRaw(""); // newline
30
30
  };
@@ -82,7 +82,7 @@ const updateNuxtConfig = () => {
82
82
  b.objectExpression([
83
83
  b.objectProperty(
84
84
  b.identifier("preset"),
85
- b.stringLiteral("./cloudflare-preset"),
85
+ b.stringLiteral("cloudflare_module"),
86
86
  ),
87
87
  ]),
88
88
  );
@@ -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,12 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "./.output/server/index.mjs",
4
+ "compatibility_date": "<TBD>",
5
+ "assets": {
6
+ "binding": "ASSETS",
7
+ "directory": "./.output/public/"
8
+ },
9
+ "observability": {
10
+ "enabled": true
11
+ }
12
+ }
@@ -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
+ }
@@ -1,8 +1,6 @@
1
1
  import { logRaw } from "@cloudflare/cli";
2
2
  import { brandColor, dim } from "@cloudflare/cli/colors";
3
- import { spinner } from "@cloudflare/cli/interactive";
4
3
  import { runFrameworkGenerator } from "frameworks/index";
5
- import { transformFile } from "helpers/codemod";
6
4
  import { detectPackageManager } from "helpers/packageManagers";
7
5
  import { installPackages } from "helpers/packages";
8
6
  import type { TemplateConfig } from "../../src/templates";
@@ -14,7 +12,7 @@ const generate = async (ctx: C3Context) => {
14
12
  await runFrameworkGenerator(ctx, [
15
13
  ctx.project.name,
16
14
  "--template",
17
- "https://github.com/remix-run/remix/tree/main/templates/cloudflare",
15
+ "https://github.com/remix-run/remix/tree/main/templates/cloudflare-workers",
18
16
  ]);
19
17
 
20
18
  logRaw(""); // newline
@@ -24,29 +22,8 @@ const configure = async () => {
24
22
  await installPackages(["wrangler@latest"], {
25
23
  dev: true,
26
24
  startText: "Updating the Wrangler version",
27
- doneText: `${brandColor(`updateed`)} ${dim("wrangler@latest")}`,
25
+ doneText: `${brandColor(`updated`)} ${dim("wrangler@latest")}`,
28
26
  });
29
-
30
- const typeDefsPath = "load-context.ts";
31
-
32
- const s = spinner();
33
- s.start(`Updating \`${typeDefsPath}\``);
34
-
35
- // Remove the empty Env declaration from the template to allow the type from
36
- // worker-configuration.d.ts to take over
37
- transformFile(typeDefsPath, {
38
- visitTSInterfaceDeclaration(n) {
39
- if (n.node.id.type === "Identifier" && n.node.id.name !== "Env") {
40
- return this.traverse(n);
41
- }
42
-
43
- // Removes the node
44
- n.replace();
45
- return false;
46
- },
47
- });
48
-
49
- s.stop(`${brandColor("updated")} \`${dim(typeDefsPath)}\``);
50
27
  };
51
28
 
52
29
  const config: TemplateConfig = {
@@ -63,8 +40,6 @@ const config: TemplateConfig = {
63
40
  configure,
64
41
  transformPackageJson: async () => ({
65
42
  scripts: {
66
- build:
67
- "remix vite:build && wrangler pages functions build --outdir build/worker",
68
43
  deploy: `${npm} run build && wrangler deploy`,
69
44
  preview: `${npm} run build && wrangler dev`,
70
45
  "cf-typegen": `wrangler types`,
@@ -1,4 +0,0 @@
1
- _worker.js
2
- _routes.json
3
- _headers
4
- _redirects
@@ -1,5 +1,11 @@
1
1
  #:schema node_modules/wrangler/config-schema.json
2
2
  name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
- main = "./build/worker/index.js"
4
+ main = "./server.ts"
5
5
  assets = { directory = "./build/client" }
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
@@ -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
+ }
@@ -13,7 +13,7 @@ import type { C3Context, PackageJson } from "types";
13
13
  const { npm } = detectPackageManager();
14
14
 
15
15
  const generate = async (ctx: C3Context) => {
16
- await runFrameworkGenerator(ctx, [ctx.project.name]);
16
+ await runFrameworkGenerator(ctx, ["create", ctx.project.name]);
17
17
 
18
18
  logRaw("");
19
19
  };
@@ -97,14 +97,11 @@ const updateTypeDefinitions = (ctx: C3Context) => {
97
97
  const config: TemplateConfig = {
98
98
  configVersion: 1,
99
99
  id: "svelte",
100
- frameworkCli: "create-svelte",
101
- displayName: "Svelte",
100
+ frameworkCli: "sv",
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
+ }
@@ -0,0 +1,33 @@
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
+ platform: "workers",
17
+ displayName: "Vue",
18
+ copyFiles: {
19
+ path: "./templates",
20
+ },
21
+ path: "templates-experimental/vue",
22
+ generate,
23
+ transformPackageJson: async () => ({
24
+ scripts: {
25
+ deploy: `${npm} run build && wrangler deploy`,
26
+ preview: `${npm} run build && wrangler dev`,
27
+ },
28
+ }),
29
+ devScript: "dev",
30
+ deployScript: "deploy",
31
+ previewScript: "preview",
32
+ };
33
+ export default config;
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "assets": {
5
+ "directory": "./dist"
6
+ },
7
+ "observability": {
8
+ "enabled": true
9
+ }
10
+ }
@@ -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
- 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,85 +0,0 @@
1
- #:schema node_modules/wrangler/config-schema.json
2
- name = "<TBD>"
3
- compatibility_date = "<TBD>"
4
- pages_build_output_dir = "./dist"
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>"