create-cloudflare 0.0.0-ecded1af1 → 0.0.0-ecef68635

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 (89) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.js +28433 -27402
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/package.json +5 -4
  5. package/templates/common/js/wrangler.toml +6 -0
  6. package/templates/common/ts/wrangler.toml +6 -0
  7. package/templates/docusaurus/c3.ts +2 -1
  8. package/templates/hello-world/js/package.json +2 -2
  9. package/templates/hello-world/js/wrangler.toml +6 -0
  10. package/templates/hello-world/py/wrangler.toml +6 -0
  11. package/templates/hello-world/ts/package.json +2 -2
  12. package/templates/hello-world/ts/wrangler.toml +6 -0
  13. package/templates/hello-world-durable-object/js/wrangler.toml +6 -0
  14. package/templates/hello-world-durable-object/ts/src/index.ts +0 -21
  15. package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +3 -4
  16. package/templates/hello-world-durable-object/ts/wrangler.toml +6 -0
  17. package/templates/hono/templates/wrangler.toml +6 -0
  18. package/templates/next/c3.ts +6 -7
  19. package/templates/nuxt/templates/wrangler.toml +1 -0
  20. package/templates/openapi/ts/wrangler.toml +6 -0
  21. package/templates/pre-existing/c3.ts +2 -2
  22. package/templates/queues/js/wrangler.toml +6 -0
  23. package/templates/queues/ts/wrangler.toml +6 -0
  24. package/templates/qwik/c3.ts +3 -3
  25. package/templates/qwik/templates/wrangler.toml +1 -0
  26. package/templates/react/c3.ts +2 -2
  27. package/templates/scheduled/js/wrangler.toml +6 -0
  28. package/templates/scheduled/ts/wrangler.toml +6 -0
  29. package/templates-experimental/angular/c3.ts +6 -10
  30. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +12 -7
  31. package/templates-experimental/angular/templates/wrangler.toml +8 -2
  32. package/templates-experimental/astro/templates/wrangler.toml +7 -1
  33. package/templates-experimental/docusaurus/templates/wrangler.toml +7 -1
  34. package/templates-experimental/gatsby/templates/wrangler.toml +7 -1
  35. package/templates-experimental/hello-world-assets-only/c3.ts +15 -0
  36. package/templates-experimental/hello-world-assets-only/templates/package.json +13 -0
  37. package/templates-experimental/hello-world-assets-only/templates/public/index.html +11 -0
  38. package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +10 -0
  39. package/templates-experimental/hello-world-durable-object-with-assets/c3.ts +23 -0
  40. package/templates-experimental/hello-world-durable-object-with-assets/js/.editorconfig +12 -0
  41. package/templates-experimental/hello-world-durable-object-with-assets/js/.prettierrc +6 -0
  42. package/templates-experimental/hello-world-durable-object-with-assets/js/__dot__gitignore +172 -0
  43. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +13 -0
  44. package/templates-experimental/hello-world-durable-object-with-assets/js/public/index.html +19 -0
  45. package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +69 -0
  46. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +24 -0
  47. package/templates-experimental/hello-world-durable-object-with-assets/ts/.editorconfig +12 -0
  48. package/templates-experimental/hello-world-durable-object-with-assets/ts/.prettierrc +6 -0
  49. package/templates-experimental/hello-world-durable-object-with-assets/ts/__dot__gitignore +172 -0
  50. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +15 -0
  51. package/templates-experimental/hello-world-durable-object-with-assets/ts/public/index.html +19 -0
  52. package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +66 -0
  53. package/templates-experimental/hello-world-durable-object-with-assets/ts/tsconfig.json +101 -0
  54. package/templates-experimental/hello-world-durable-object-with-assets/ts/worker-configuration.d.ts +5 -0
  55. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +24 -0
  56. package/templates-experimental/hello-world-with-assets/c3.ts +2 -2
  57. package/templates-experimental/hello-world-with-assets/js/package.json +2 -2
  58. package/templates-experimental/hello-world-with-assets/js/public/index.html +13 -1
  59. package/templates-experimental/hello-world-with-assets/js/src/index.js +9 -1
  60. package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +33 -12
  61. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +7 -1
  62. package/templates-experimental/hello-world-with-assets/py/public/index.html +14 -2
  63. package/templates-experimental/hello-world-with-assets/py/src/entry.py +7 -2
  64. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +7 -1
  65. package/templates-experimental/hello-world-with-assets/ts/package.json +2 -2
  66. package/templates-experimental/hello-world-with-assets/ts/public/index.html +13 -1
  67. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +10 -2
  68. package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +33 -17
  69. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +7 -1
  70. package/templates-experimental/hono/c3.ts +43 -0
  71. package/templates-experimental/hono/templates/public/index.html +19 -0
  72. package/templates-experimental/hono/templates/src/index.ts +9 -0
  73. package/templates-experimental/hono/templates/worker-configuration.d.ts +4 -0
  74. package/templates-experimental/hono/templates/wrangler.toml +5 -0
  75. package/templates-experimental/next/c3.ts +52 -0
  76. package/templates-experimental/next/templates/__dot__gitignore +42 -0
  77. package/templates-experimental/next/templates/env.d.ts +5 -0
  78. package/templates-experimental/next/templates/wrangler.toml +12 -0
  79. package/templates-experimental/nuxt/templates/wrangler.toml +7 -1
  80. package/templates-experimental/qwik/c3.ts +1 -1
  81. package/templates-experimental/qwik/templates/wrangler.toml +7 -1
  82. package/templates-experimental/remix/c3.ts +1 -1
  83. package/templates-experimental/remix/templates/wrangler.toml +7 -1
  84. package/templates-experimental/solid/templates/wrangler.toml +7 -1
  85. package/templates-experimental/svelte/js/wrangler.toml +7 -1
  86. package/templates-experimental/svelte/ts/wrangler.toml +7 -1
  87. package/templates-experimental/angular/templates/src/.assetsignore +0 -4
  88. package/templates-experimental/angular/templates/tools/copy-files.mjs +0 -9
  89. package/templates-experimental/angular/templates/tools/paths.mjs +0 -9
@@ -10,9 +10,9 @@
10
10
  "cf-typegen": "wrangler types"
11
11
  },
12
12
  "devDependencies": {
13
- "@cloudflare/vitest-pool-workers": "^0.4.5",
13
+ "@cloudflare/vitest-pool-workers": "^0.5.2",
14
14
  "typescript": "^5.5.2",
15
- "vitest": "1.5.0",
15
+ "vitest": "2.0.5",
16
16
  "wrangler": "^3.60.3"
17
17
  }
18
18
  }
@@ -4,6 +4,12 @@ main = "src/index.ts"
4
4
  compatibility_date = "<TBD>"
5
5
  compatibility_flags = ["nodejs_compat"]
6
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
12
+
7
13
  # Automatically place your workloads in an optimal location to minimize latency.
8
14
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
9
15
  # rather than the end user may result in better performance.
@@ -3,6 +3,12 @@ name = "<TBD>"
3
3
  main = "src/index.js"
4
4
  compatibility_date = "<TBD>"
5
5
 
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
11
+
6
12
  # Automatically place your workloads in an optimal location to minimize latency.
7
13
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
8
14
  # rather than the end user may result in better performance.
@@ -13,27 +13,6 @@ import { DurableObject } from "cloudflare:workers";
13
13
  * Learn more at https://developers.cloudflare.com/durable-objects
14
14
  */
15
15
 
16
-
17
- /**
18
- * Associate bindings declared in wrangler.toml with the TypeScript type system
19
- */
20
- export interface Env {
21
- // Example binding to KV. Learn more at https://developers.cloudflare.com/workers/runtime-apis/kv/
22
- // MY_KV_NAMESPACE: KVNamespace;
23
- //
24
- // Example binding to Durable Object. Learn more at https://developers.cloudflare.com/workers/runtime-apis/durable-objects/
25
- MY_DURABLE_OBJECT: DurableObjectNamespace<MyDurableObject>;
26
- //
27
- // Example binding to R2. Learn more at https://developers.cloudflare.com/workers/runtime-apis/r2/
28
- // MY_BUCKET: R2Bucket;
29
- //
30
- // Example binding to a Service. Learn more at https://developers.cloudflare.com/workers/runtime-apis/service-bindings/
31
- // MY_SERVICE: Fetcher;
32
- //
33
- // Example binding to a Queue. Learn more at https://developers.cloudflare.com/queues/javascript-apis/
34
- // MY_QUEUE: Queue;
35
- }
36
-
37
16
  /** A Durable Object's behavior is defined in an exported Javascript class */
38
17
  export class MyDurableObject extends DurableObject {
39
18
  /**
@@ -1,6 +1,5 @@
1
- // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
1
+ // Generated by Wrangler by running `wrangler types`
2
+
3
3
  interface Env {
4
- MY_DURABLE_OBJECT: DurableObjectNamespace;
4
+ MY_DURABLE_OBJECT: DurableObjectNamespace<import("./src/index").MyDurableObject>;
5
5
  }
6
-
@@ -3,6 +3,12 @@ name = "<TBD>"
3
3
  main = "src/index.ts"
4
4
  compatibility_date = "<TBD>"
5
5
 
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
11
+
6
12
  # Automatically place your workloads in an optimal location to minimize latency.
7
13
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
8
14
  # rather than the end user may result in better performance.
@@ -3,6 +3,12 @@ name = "<TBD>"
3
3
  main = "src/index.ts"
4
4
  compatibility_date = "<TBD>"
5
5
 
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
11
+
6
12
  # Automatically place your workloads in an optimal location to minimize latency.
7
13
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
8
14
  # rather than the end user may result in better performance.
@@ -1,8 +1,7 @@
1
1
  import { join } from "path";
2
- import { crash, updateStatus, warn } from "@cloudflare/cli";
3
- import { processArgument } from "@cloudflare/cli/args";
2
+ import { updateStatus, warn } from "@cloudflare/cli";
4
3
  import { brandColor, dim } from "@cloudflare/cli/colors";
5
- import { spinner } from "@cloudflare/cli/interactive";
4
+ import { inputPrompt, spinner } from "@cloudflare/cli/interactive";
6
5
  import { runFrameworkGenerator } from "frameworks/index";
7
6
  import {
8
7
  copyFile,
@@ -18,7 +17,7 @@ import { detectPackageManager } from "helpers/packageManagers";
18
17
  import { installPackages } from "helpers/packages";
19
18
  import { getTemplatePath } from "../../src/templates";
20
19
  import type { TemplateConfig } from "../../src/templates";
21
- import type { C3Args, C3Context } from "types";
20
+ import type { C3Context } from "types";
22
21
 
23
22
  const { npm, npx } = detectPackageManager();
24
23
 
@@ -42,7 +41,7 @@ const generate = async (ctx: C3Context) => {
42
41
  // This should never happen to users, it is a check mostly so that
43
42
  // if the toml file is changed in a way that breaks the "KV Example" addition
44
43
  // the C3 Next.js e2e runs will fail with this
45
- crash("Failed to properly generate the wrangler.toml file");
44
+ throw new Error("Failed to properly generate the wrangler.toml file");
46
45
  }
47
46
 
48
47
  writeFile(join(ctx.project.path, "wrangler.toml"), newTomlContent);
@@ -89,7 +88,7 @@ const configure = async (ctx: C3Context) => {
89
88
  ]);
90
89
 
91
90
  if (!path) {
92
- crash("Could not find the `/api` or `/app` directory");
91
+ throw new Error("Could not find the `/api` or `/app` directory");
93
92
  }
94
93
 
95
94
  const usesTs = usesTypescript(ctx);
@@ -135,7 +134,7 @@ export const shouldInstallNextOnPagesEslintPlugin = async (
135
134
  return false;
136
135
  }
137
136
 
138
- return await processArgument(ctx.args, "eslint-plugin" as keyof C3Args, {
137
+ return await inputPrompt({
139
138
  type: "confirm",
140
139
  question: "Do you want to use the next-on-pages eslint-plugin?",
141
140
  label: "eslint-plugin",
@@ -1,6 +1,7 @@
1
1
  #:schema node_modules/wrangler/config-schema.json
2
2
  name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
+ compatibility_flags = ["nodejs_compat"]
4
5
  pages_build_output_dir = "./dist"
5
6
 
6
7
  # Automatically place your workloads in an optimal location to minimize latency.
@@ -3,6 +3,12 @@ name = "<TBD>"
3
3
  main = "src/index.ts"
4
4
  compatibility_date = "<TBD>"
5
5
 
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
11
+
6
12
  # Automatically place your workloads in an optimal location to minimize latency.
7
13
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
8
14
  # rather than the end user may result in better performance.
@@ -1,8 +1,8 @@
1
1
  import { cp, mkdtemp } from "fs/promises";
2
2
  import { tmpdir } from "os";
3
3
  import { join } from "path";
4
- import { processArgument } from "@cloudflare/cli/args";
5
4
  import { brandColor, dim } from "@cloudflare/cli/colors";
5
+ import { processArgument } from "helpers/args";
6
6
  import { runCommand } from "helpers/command";
7
7
  import { detectPackageManager } from "helpers/packageManagers";
8
8
  import { chooseAccount } from "../../src/wrangler/accounts";
@@ -14,7 +14,7 @@ export async function copyExistingWorkerFiles(ctx: C3Context) {
14
14
  await chooseAccount(ctx);
15
15
 
16
16
  if (ctx.args.existingScript === undefined) {
17
- ctx.args.existingScript = await processArgument<string>(
17
+ ctx.args.existingScript = await processArgument(
18
18
  ctx.args,
19
19
  "existingScript",
20
20
  {
@@ -3,6 +3,12 @@ name = "<TBD>"
3
3
  main = "src/index.js"
4
4
  compatibility_date = "<TBD>"
5
5
 
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
11
+
6
12
  # Automatically place your workloads in an optimal location to minimize latency.
7
13
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
8
14
  # rather than the end user may result in better performance.
@@ -3,6 +3,12 @@ name = "<TBD>"
3
3
  main = "src/index.ts"
4
4
  compatibility_date = "<TBD>"
5
5
 
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
11
+
6
12
  # Automatically place your workloads in an optimal location to minimize latency.
7
13
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
8
14
  # rather than the end user may result in better performance.
@@ -1,4 +1,4 @@
1
- import { crash, endSection } from "@cloudflare/cli";
1
+ import { endSection } from "@cloudflare/cli";
2
2
  import { brandColor } from "@cloudflare/cli/colors";
3
3
  import { spinner } from "@cloudflare/cli/interactive";
4
4
  import { runFrameworkGenerator } from "frameworks/index";
@@ -13,7 +13,7 @@ import type { C3Context } from "types";
13
13
  const { npm, npx } = detectPackageManager();
14
14
 
15
15
  const generate = async (ctx: C3Context) => {
16
- await runFrameworkGenerator(ctx, ["basic", ctx.project.name]);
16
+ await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
17
17
  };
18
18
 
19
19
  const configure = async (ctx: C3Context) => {
@@ -75,7 +75,7 @@ const addBindingsProxy = (ctx: C3Context) => {
75
75
  }
76
76
 
77
77
  if (configArgument.type !== "ObjectExpression") {
78
- crash("Failed to update `vite.config.ts`");
78
+ throw new Error("Failed to update `vite.config.ts`");
79
79
  }
80
80
 
81
81
  // Add the `platform` object to the object
@@ -2,6 +2,7 @@
2
2
  name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
4
  pages_build_output_dir = "./dist"
5
+ compatibility_flags = ["nodejs_compat"]
5
6
 
6
7
  # Automatically place your workloads in an optimal location to minimize latency.
7
8
  # If you are running back-end logic in a Pages Function, running it closer to your back-end infrastructure
@@ -1,5 +1,5 @@
1
1
  import { logRaw } from "@cloudflare/cli";
2
- import { processArgument } from "@cloudflare/cli/args";
2
+ import { inputPrompt } from "@cloudflare/cli/interactive";
3
3
  import { runFrameworkGenerator } from "frameworks/index";
4
4
  import { detectPackageManager } from "helpers/packageManagers";
5
5
  import type { TemplateConfig } from "../../src/templates";
@@ -8,7 +8,7 @@ import type { C3Context } from "types";
8
8
  const { npm } = detectPackageManager();
9
9
 
10
10
  const generate = async (ctx: C3Context) => {
11
- const variant = await processArgument<string>(ctx.args, "variant", {
11
+ const variant = await inputPrompt({
12
12
  type: "select",
13
13
  question: "Select a variant:",
14
14
  label: "variant",
@@ -9,6 +9,12 @@ compatibility_date = "<TBD>"
9
9
  [triggers]
10
10
  crons = ["* * * * *"] # * * * * * = run every minute
11
11
 
12
+ # Workers Logs
13
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
14
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
15
+ [observability]
16
+ enabled = true
17
+
12
18
  # Automatically place your workloads in an optimal location to minimize latency.
13
19
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
14
20
  # rather than the end user may result in better performance.
@@ -9,6 +9,12 @@ compatibility_date = "<TBD>"
9
9
  [triggers]
10
10
  crons = ["* * * * *"] # * * * * * = run every minute
11
11
 
12
+ # Workers Logs
13
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
14
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
15
+ [observability]
16
+ enabled = true
17
+
12
18
  # Automatically place your workloads in an optimal location to minimize latency.
13
19
  # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
14
20
  # rather than the end user may result in better performance.
@@ -23,14 +23,11 @@ const configure = async (ctx: C3Context) => {
23
23
  };
24
24
 
25
25
  async function installCFWorker() {
26
- await installPackages(
27
- ["@cloudflare/workers-types", "@miniflare/tre@next", "wrangler@beta"],
28
- {
29
- dev: true,
30
- startText: "Installing adapter dependencies",
31
- doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
32
- },
33
- );
26
+ await installPackages(["@cloudflare/workers-types", "wrangler"], {
27
+ dev: true,
28
+ startText: "Installing adapter dependencies",
29
+ doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
30
+ });
34
31
  }
35
32
  async function updateAppCode() {
36
33
  const s = spinner();
@@ -93,8 +90,7 @@ const config: TemplateConfig = {
93
90
  scripts: {
94
91
  start: `${npm} run build && wrangler dev`,
95
92
  build: `ng build && ${npm} run process`,
96
- process:
97
- "node ./tools/copy-files.mjs && node ./tools/alter-polyfills.mjs",
93
+ process: "node ./tools/alter-polyfills.mjs",
98
94
  deploy: `${npm} run build && wrangler deploy`,
99
95
  },
100
96
  }),
@@ -1,7 +1,9 @@
1
1
  import fs from "node:fs";
2
2
  import { EOL } from "node:os";
3
3
  import { join } from "node:path";
4
- import { worker } from "./paths.mjs";
4
+ import path from "node:path";
5
+ import { fileURLToPath } from "node:url";
6
+ const dirname = path.dirname(fileURLToPath(import.meta.url));
5
7
 
6
8
  /**
7
9
  * Split by lines and comment the banner
@@ -10,15 +12,18 @@ import { worker } from "./paths.mjs";
10
12
  * globalThis['require'] ??= createRequire(import.meta.url);
11
13
  * ```
12
14
  */
13
- const serverPolyfillsFile = join(worker, "polyfills.server.mjs");
15
+ const serverPolyfillsFile = join(
16
+ dirname,
17
+ "../dist/server/polyfills.server.mjs"
18
+ );
14
19
  const serverPolyfillsData = fs
15
- .readFileSync(serverPolyfillsFile, "utf8")
16
- .split(/\r?\n/);
20
+ .readFileSync(serverPolyfillsFile, "utf8")
21
+ .split(/\r?\n/);
17
22
 
18
23
  for (let index = 0; index < 2; index++) {
19
- if (serverPolyfillsData[index].includes("createRequire")) {
20
- serverPolyfillsData[index] = "// " + serverPolyfillsData[index];
21
- }
24
+ if (serverPolyfillsData[index].includes("createRequire")) {
25
+ serverPolyfillsData[index] = "// " + serverPolyfillsData[index];
26
+ }
22
27
  }
23
28
 
24
29
  // Add needed polyfills
@@ -1,5 +1,11 @@
1
1
  #:schema node_modules/wrangler/config-schema.json
2
2
  name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
- main = "./dist/cloudflare/_worker.js"
5
- experimental_assets = { directory = "./dist/cloudflare", binding = "ASSETS" }
4
+ main = "./dist/server/server.mjs"
5
+ assets = { directory = "./dist/browser", binding = "ASSETS" }
6
+
7
+ # Workers Logs
8
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
9
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
10
+ [observability]
11
+ enabled = true
@@ -3,4 +3,10 @@ name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
4
  compatibility_flags = ["nodejs_compat_v2"]
5
5
  main = "./dist/_worker.js"
6
- experimental_assets = { directory = "./dist", binding = "ASSETS" }
6
+ assets = { directory = "./dist", binding = "ASSETS" }
7
+
8
+ # Workers Logs
9
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
10
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
11
+ [observability]
12
+ enabled = true
@@ -1,4 +1,10 @@
1
1
  #:schema node_modules/wrangler/config-schema.json
2
2
  name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
- experimental_assets = { directory = "./build" }
4
+ assets = { directory = "./build" }
5
+
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
@@ -1,4 +1,10 @@
1
1
  #:schema node_modules/wrangler/config-schema.json
2
2
  name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
- experimental_assets = { directory = "./public" }
4
+ assets = { directory = "./public" }
5
+
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
@@ -0,0 +1,15 @@
1
+ import type { TemplateConfig } from "../../src/templates";
2
+
3
+ const config: TemplateConfig = {
4
+ configVersion: 1,
5
+ id: "hello-world-assets-only",
6
+ path: "templates-experimental/hello-world-assets-only",
7
+ displayName: "Hello World - Assets-only",
8
+ description: "Get started with a basic Worker that only serves static assets",
9
+ platform: "workers",
10
+ copyFiles: {
11
+ path: "./templates",
12
+ },
13
+ };
14
+
15
+ export default config;
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "version": "0.0.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "deploy": "wrangler deploy",
7
+ "dev": "wrangler dev",
8
+ "start": "wrangler dev"
9
+ },
10
+ "devDependencies": {
11
+ "wrangler": "^3.78.5"
12
+ }
13
+ }
@@ -0,0 +1,11 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Hello, World!</title>
7
+ </head>
8
+ <body>
9
+ <h1 id="heading">Hello, World!</h1>
10
+ </body>
11
+ </html>
@@ -0,0 +1,10 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ assets = { directory = "./public" }
5
+
6
+ # Workers Logs
7
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
8
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
9
+ [observability]
10
+ enabled = true
@@ -0,0 +1,23 @@
1
+ import type { TemplateConfig } from "../../src/templates";
2
+
3
+ const config: TemplateConfig = {
4
+ configVersion: 1,
5
+ id: "hello-world-durable-object-with-assets",
6
+ path: "templates-experimental/hello-world-durable-object-with-assets",
7
+ displayName: "Hello World - Worker Using Durable Objects with Assets",
8
+ description:
9
+ "Get started with a basic stateful app to build projects like real-time chats, collaborative apps, and multiplayer games, which hosts assets",
10
+ platform: "workers",
11
+ copyFiles: {
12
+ variants: {
13
+ js: {
14
+ path: "./js",
15
+ },
16
+ ts: {
17
+ path: "./ts",
18
+ },
19
+ },
20
+ },
21
+ };
22
+
23
+ export default config;
@@ -0,0 +1,12 @@
1
+ # http://editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ indent_style = tab
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [*.yml]
12
+ indent_style = space
@@ -0,0 +1,6 @@
1
+ {
2
+ "printWidth": 140,
3
+ "singleQuote": true,
4
+ "semi": true,
5
+ "useTabs": true
6
+ }