create-cloudflare 0.0.0-eec2a7074 → 0.0.0-eef649c82

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 (144) hide show
  1. package/dist/cli.js +6279 -7656
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +7 -6
  4. package/templates/analog/templates/wrangler.json +5 -0
  5. package/templates/angular/c3.ts +25 -13
  6. package/templates/angular/templates/src/server.ts +15 -0
  7. package/templates/angular/templates/tools/copy-files.mjs +8 -2
  8. package/templates/astro/c3.ts +17 -33
  9. package/templates/astro/templates/js/wrangler.json +8 -0
  10. package/templates/astro/templates/ts/worker-configuration.d.ts +4 -0
  11. package/templates/astro/templates/ts/wrangler.json +8 -0
  12. package/templates/common/js/package.json +1 -1
  13. package/templates/common/js/wrangler.json +8 -0
  14. package/templates/common/ts/package.json +1 -1
  15. package/templates/common/ts/wrangler.json +8 -0
  16. package/templates/hello-world/js/package.json +2 -2
  17. package/templates/hello-world/js/wrangler.json +8 -0
  18. package/templates/hello-world/py/package.json +1 -1
  19. package/templates/hello-world/py/wrangler.json +9 -0
  20. package/templates/hello-world/ts/package.json +2 -2
  21. package/templates/hello-world/ts/test/tsconfig.json +1 -1
  22. package/templates/hello-world/ts/wrangler.json +8 -0
  23. package/templates/hello-world-durable-object/js/package.json +1 -1
  24. package/templates/hello-world-durable-object/js/wrangler.json +24 -0
  25. package/templates/hello-world-durable-object/ts/package.json +1 -1
  26. package/templates/hello-world-durable-object/ts/src/index.ts +1 -1
  27. package/templates/hello-world-durable-object/ts/wrangler.json +24 -0
  28. package/templates/hono/templates/wrangler.json +8 -0
  29. package/templates/next/README.md +1 -1
  30. package/templates/next/app/js/app/api/hello/route.js +4 -4
  31. package/templates/next/app/ts/app/api/hello/route.ts +4 -5
  32. package/templates/next/c3.ts +4 -4
  33. package/templates/next/wrangler.json +8 -0
  34. package/templates/nuxt/c3.ts +1 -1
  35. package/templates/nuxt/templates/wrangler.json +8 -0
  36. package/templates/openapi/ts/package.json +1 -1
  37. package/templates/openapi/ts/wrangler.json +8 -0
  38. package/templates/pre-existing/js/package.json +1 -1
  39. package/templates/pre-existing/js/wrangler.json +5 -0
  40. package/templates/queues/js/package.json +1 -1
  41. package/templates/queues/js/wrangler.json +21 -0
  42. package/templates/queues/ts/package.json +1 -1
  43. package/templates/queues/ts/wrangler.json +21 -0
  44. package/templates/qwik/templates/wrangler.json +8 -0
  45. package/templates/remix/templates/wrangler.json +5 -0
  46. package/templates/scheduled/js/package.json +1 -1
  47. package/templates/scheduled/js/wrangler.json +13 -0
  48. package/templates/scheduled/ts/package.json +1 -1
  49. package/templates/scheduled/ts/wrangler.json +13 -0
  50. package/templates/solid/c3.ts +1 -1
  51. package/templates/solid/templates/wrangler.json +8 -0
  52. package/templates/svelte/c3.ts +32 -5
  53. package/templates/svelte/templates/wrangler.json +5 -0
  54. package/templates-experimental/angular/c3.ts +21 -7
  55. package/templates-experimental/angular/templates/src/server.ts +15 -0
  56. package/templates-experimental/angular/templates/wrangler.json +12 -0
  57. package/templates-experimental/astro/c3.ts +17 -33
  58. package/templates-experimental/astro/templates/js/wrangler.json +15 -0
  59. package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +4 -0
  60. package/templates-experimental/astro/templates/ts/wrangler.json +15 -0
  61. package/templates-experimental/docusaurus/templates/wrangler.json +10 -0
  62. package/templates-experimental/gatsby/templates/wrangler.json +10 -0
  63. package/templates-experimental/hello-world-assets-only/templates/wrangler.json +10 -0
  64. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +1 -1
  65. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.json +28 -0
  66. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +1 -1
  67. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.json +28 -0
  68. package/templates-experimental/hello-world-with-assets/js/package.json +2 -2
  69. package/templates-experimental/hello-world-with-assets/js/wrangler.json +15 -0
  70. package/templates-experimental/hello-world-with-assets/py/package.json +1 -1
  71. package/templates-experimental/hello-world-with-assets/py/wrangler.json +15 -0
  72. package/templates-experimental/hello-world-with-assets/ts/package.json +2 -2
  73. package/templates-experimental/hello-world-with-assets/ts/wrangler.json +15 -0
  74. package/templates-experimental/hono/templates/wrangler.json +9 -0
  75. package/templates-experimental/next/c3.ts +12 -5
  76. package/templates-experimental/next/templates/.dev.vars +2 -0
  77. package/templates-experimental/next/templates/__dot__gitignore +2 -5
  78. package/templates-experimental/next/templates/cloudflare-env.d.ts +5 -0
  79. package/templates-experimental/next/templates/open-next.config.ts +28 -0
  80. package/templates-experimental/next/templates/wrangler.json +13 -0
  81. package/templates-experimental/nuxt/c3.ts +2 -2
  82. package/templates-experimental/nuxt/templates/wrangler.json +12 -0
  83. package/templates-experimental/qwik/templates/wrangler.json +15 -0
  84. package/templates-experimental/remix/c3.ts +1 -26
  85. package/templates-experimental/remix/templates/public/.assetsignore +0 -4
  86. package/templates-experimental/remix/templates/wrangler.toml +1 -1
  87. package/templates-experimental/solid/c3.ts +8 -51
  88. package/templates-experimental/solid/templates/wrangler.json +15 -0
  89. package/templates-experimental/svelte/c3.ts +2 -5
  90. package/templates-experimental/svelte/templates/wrangler.json +12 -0
  91. package/templates-experimental/vue/c3.ts +33 -0
  92. package/templates-experimental/vue/templates/wrangler.json +10 -0
  93. package/templates/analog/templates/wrangler.toml +0 -85
  94. package/templates/angular/templates/server.ts +0 -34
  95. package/templates/angular/templates/tools/alter-polyfills.mjs +0 -27
  96. package/templates/angular/templates/tools/paths.mjs +0 -9
  97. package/templates/astro/templates/wrangler.toml +0 -85
  98. package/templates/common/js/wrangler.toml +0 -113
  99. package/templates/common/ts/wrangler.toml +0 -113
  100. package/templates/hello-world/js/wrangler.toml +0 -114
  101. package/templates/hello-world/py/wrangler.toml +0 -114
  102. package/templates/hello-world/ts/wrangler.toml +0 -114
  103. package/templates/hello-world-durable-object/js/wrangler.toml +0 -113
  104. package/templates/hello-world-durable-object/ts/wrangler.toml +0 -113
  105. package/templates/hono/templates/wrangler.toml +0 -113
  106. package/templates/next/wrangler.toml +0 -86
  107. package/templates/nuxt/templates/wrangler.toml +0 -86
  108. package/templates/openapi/ts/wrangler.toml +0 -113
  109. package/templates/pre-existing/js/wrangler.toml +0 -4
  110. package/templates/queues/js/wrangler.toml +0 -118
  111. package/templates/queues/ts/wrangler.toml +0 -118
  112. package/templates/qwik/templates/wrangler.toml +0 -86
  113. package/templates/remix/templates/wrangler.toml +0 -85
  114. package/templates/scheduled/js/wrangler.toml +0 -119
  115. package/templates/scheduled/ts/wrangler.toml +0 -119
  116. package/templates/solid/templates/wrangler.toml +0 -84
  117. package/templates/svelte/js/wrangler.toml +0 -85
  118. package/templates/svelte/ts/wrangler.toml +0 -85
  119. package/templates-experimental/angular/templates/server.ts +0 -34
  120. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +0 -32
  121. package/templates-experimental/angular/templates/wrangler.toml +0 -11
  122. package/templates-experimental/astro/templates/wrangler.toml +0 -12
  123. package/templates-experimental/docusaurus/templates/wrangler.toml +0 -10
  124. package/templates-experimental/gatsby/templates/wrangler.toml +0 -10
  125. package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +0 -10
  126. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +0 -24
  127. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +0 -24
  128. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +0 -12
  129. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +0 -12
  130. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +0 -12
  131. package/templates-experimental/hono/templates/wrangler.toml +0 -5
  132. package/templates-experimental/next/templates/env.d.ts +0 -5
  133. package/templates-experimental/next/templates/wrangler.toml +0 -12
  134. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +0 -27
  135. package/templates-experimental/nuxt/templates/wrangler.toml +0 -11
  136. package/templates-experimental/qwik/templates/wrangler.toml +0 -12
  137. package/templates-experimental/solid/templates/wrangler.toml +0 -12
  138. package/templates-experimental/svelte/js/wrangler.toml +0 -11
  139. package/templates-experimental/svelte/ts/wrangler.toml +0 -11
  140. /package/templates/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  141. /package/templates-experimental/astro/templates/{public → js/public}/.assetsignore +0 -0
  142. /package/templates-experimental/{svelte/js/static → astro/templates/ts/public}/.assetsignore +0 -0
  143. /package/templates-experimental/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  144. /package/templates-experimental/svelte/{ts → templates}/static/.assetsignore +0 -0
@@ -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,28 @@
1
+ import cache from "@opennextjs/cloudflare/kvCache";
2
+
3
+ const config = {
4
+ default: {
5
+ override: {
6
+ wrapper: "cloudflare-node",
7
+ converter: "edge",
8
+ incrementalCache: async () => cache,
9
+ tagCache: "dummy",
10
+ queue: "dummy",
11
+ },
12
+ },
13
+
14
+ middleware: {
15
+ external: true,
16
+ override: {
17
+ wrapper: "cloudflare-edge",
18
+ converter: "edge",
19
+ proxyExternalRequest: "fetch",
20
+ },
21
+ },
22
+
23
+ dangerous: {
24
+ enableCacheInterception: false,
25
+ },
26
+ };
27
+
28
+ export default config;
@@ -0,0 +1,13 @@
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
+ "minify": true,
9
+ "assets": {
10
+ "binding": "ASSETS",
11
+ "directory": ".open-next/assets"
12
+ }
13
+ }
@@ -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
  );
@@ -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
+ }
@@ -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
@@ -26,27 +24,6 @@ const configure = async () => {
26
24
  startText: "Updating the Wrangler version",
27
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,7 +1,7 @@
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
6
 
7
7
  # Workers Logs
@@ -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
+ }
@@ -98,13 +98,10 @@ const config: TemplateConfig = {
98
98
  configVersion: 1,
99
99
  id: "svelte",
100
100
  frameworkCli: "sv",
101
- displayName: "Svelte",
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>"