create-cloudflare 0.0.0-ebc85c36 → 0.0.0-ecded1af1

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 (94) hide show
  1. package/dist/cli.js +47338 -46903
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +6 -5
  4. package/templates/analog/c3.ts +1 -0
  5. package/templates/angular/c3.ts +1 -0
  6. package/templates/astro/c3.ts +1 -0
  7. package/templates/common/c3.ts +3 -0
  8. package/templates/docusaurus/c3.ts +1 -0
  9. package/templates/gatsby/c3.ts +1 -0
  10. package/templates/hello-world/c3.ts +5 -1
  11. package/templates/hello-world/py/__dot__gitignore +68 -0
  12. package/templates/hello-world/py/package.json +13 -0
  13. package/templates/hello-world/py/src/entry.py +4 -0
  14. package/templates/hello-world/ts/tsconfig.json +2 -1
  15. package/templates/hello-world-durable-object/c3.ts +3 -1
  16. package/templates/hono/c3.ts +1 -10
  17. package/templates/hono/snippets/appDeclaration.ts +1 -1
  18. package/templates/next/c3.ts +1 -0
  19. package/templates/nuxt/c3.ts +1 -0
  20. package/templates/openapi/c3.ts +1 -0
  21. package/templates/queues/c3.ts +2 -0
  22. package/templates/qwik/c3.ts +1 -0
  23. package/templates/react/c3.ts +33 -3
  24. package/templates/remix/c3.ts +1 -0
  25. package/templates/scheduled/c3.ts +2 -0
  26. package/templates/solid/c3.ts +1 -0
  27. package/templates/svelte/c3.ts +1 -0
  28. package/templates/vue/c3.ts +1 -0
  29. package/templates-experimental/angular/c3.ts +102 -0
  30. package/templates-experimental/angular/templates/server.ts +34 -0
  31. package/templates-experimental/angular/templates/src/.assetsignore +4 -0
  32. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +27 -0
  33. package/templates-experimental/angular/templates/tools/copy-files.mjs +9 -0
  34. package/templates-experimental/angular/templates/tools/paths.mjs +9 -0
  35. package/templates-experimental/angular/templates/wrangler.toml +5 -0
  36. package/templates-experimental/astro/c3.ts +114 -0
  37. package/templates-experimental/astro/snippets/runtimeDeclaration.ts +5 -0
  38. package/templates-experimental/astro/templates/public/.assetsignore +4 -0
  39. package/templates-experimental/astro/templates/wrangler.toml +6 -0
  40. package/templates-experimental/docusaurus/c3.ts +32 -0
  41. package/templates-experimental/docusaurus/templates/wrangler.toml +4 -0
  42. package/templates-experimental/gatsby/c3.ts +53 -0
  43. package/templates-experimental/gatsby/templates/wrangler.toml +4 -0
  44. package/templates-experimental/hello-world-with-assets/c3.ts +22 -0
  45. package/templates-experimental/hello-world-with-assets/js/.editorconfig +12 -0
  46. package/templates-experimental/hello-world-with-assets/js/.prettierrc +6 -0
  47. package/templates-experimental/hello-world-with-assets/js/__dot__gitignore +172 -0
  48. package/templates-experimental/hello-world-with-assets/js/package.json +16 -0
  49. package/templates-experimental/hello-world-with-assets/js/public/index.html +19 -0
  50. package/templates-experimental/hello-world-with-assets/js/src/index.js +15 -0
  51. package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +20 -0
  52. package/templates-experimental/hello-world-with-assets/js/vitest.config.js +11 -0
  53. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +6 -0
  54. package/templates-experimental/hello-world-with-assets/py/public/index.html +19 -0
  55. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +6 -0
  56. package/templates-experimental/hello-world-with-assets/ts/.editorconfig +12 -0
  57. package/templates-experimental/hello-world-with-assets/ts/.prettierrc +6 -0
  58. package/templates-experimental/hello-world-with-assets/ts/__dot__gitignore +172 -0
  59. package/templates-experimental/hello-world-with-assets/ts/package.json +18 -0
  60. package/templates-experimental/hello-world-with-assets/ts/public/index.html +19 -0
  61. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +18 -0
  62. package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +25 -0
  63. package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +8 -0
  64. package/templates-experimental/hello-world-with-assets/ts/tsconfig.json +103 -0
  65. package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +11 -0
  66. package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +4 -0
  67. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +6 -0
  68. package/templates-experimental/nuxt/c3.ts +135 -0
  69. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +27 -0
  70. package/templates-experimental/nuxt/templates/env.d.ts +14 -0
  71. package/templates-experimental/nuxt/templates/worker-configuration.d.ts +4 -0
  72. package/templates-experimental/nuxt/templates/wrangler.toml +5 -0
  73. package/templates-experimental/qwik/c3.ts +153 -0
  74. package/templates-experimental/qwik/snippets/getPlatformProxy.ts +6 -0
  75. package/templates-experimental/qwik/templates/public/.assetsignore +4 -0
  76. package/templates-experimental/qwik/templates/worker-configuration.d.ts +4 -0
  77. package/templates-experimental/qwik/templates/wrangler.toml +6 -0
  78. package/templates-experimental/remix/c3.ts +77 -0
  79. package/templates-experimental/remix/templates/public/.assetsignore +4 -0
  80. package/templates-experimental/remix/templates/worker-configuration.d.ts +4 -0
  81. package/templates-experimental/remix/templates/wrangler.toml +5 -0
  82. package/templates-experimental/solid/c3.ts +137 -0
  83. package/templates-experimental/solid/templates/wrangler.toml +6 -0
  84. package/templates-experimental/svelte/c3.ts +132 -0
  85. package/templates-experimental/svelte/js/static/.assetsignore +4 -0
  86. package/templates-experimental/svelte/js/wrangler.toml +5 -0
  87. package/templates-experimental/svelte/ts/static/.assetsignore +4 -0
  88. package/templates-experimental/svelte/ts/wrangler.toml +5 -0
  89. package/templates/hello-world-python/c3.ts +0 -9
  90. package/templates/hono/snippets/bindingsType.ts +0 -3
  91. /package/templates/{hello-world-python → hello-world}/py/wrangler.toml +0 -0
  92. /package/{templates/hello-world-python → templates-experimental/hello-world-with-assets}/py/__dot__gitignore +0 -0
  93. /package/{templates/hello-world-python → templates-experimental/hello-world-with-assets}/py/package.json +0 -0
  94. /package/{templates/hello-world-python → templates-experimental/hello-world-with-assets}/py/src/entry.py +0 -0
@@ -0,0 +1,68 @@
1
+ # Logs
2
+
3
+ logs
4
+ _.log
5
+ npm-debug.log_
6
+ yarn-debug.log*
7
+ yarn-error.log*
8
+ lerna-debug.log*
9
+ .pnpm-debug.log*
10
+
11
+ # Diagnostic reports (https://nodejs.org/api/report.html)
12
+
13
+ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
14
+
15
+ # Runtime data
16
+
17
+ pids
18
+ _.pid
19
+ _.seed
20
+ \*.pid.lock
21
+
22
+ # Dependency directories
23
+
24
+ node_modules/
25
+ jspm_packages/
26
+
27
+ # TypeScript cache
28
+
29
+ \*.tsbuildinfo
30
+
31
+ # Optional npm cache directory
32
+
33
+ .npm
34
+
35
+ # Optional eslint cache
36
+
37
+ .eslintcache
38
+
39
+ # Optional stylelint cache
40
+
41
+ .stylelintcache
42
+
43
+ # Optional REPL history
44
+
45
+ .node_repl_history
46
+
47
+ # Output of 'npm pack'
48
+
49
+ \*.tgz
50
+
51
+ # dotenv environment variable files
52
+
53
+ .env
54
+ .env.development.local
55
+ .env.test.local
56
+ .env.production.local
57
+ .env.local
58
+
59
+ # public
60
+
61
+ # Stores VSCode versions used for testing VSCode extensions
62
+
63
+ .vscode-test
64
+
65
+ # wrangler project
66
+
67
+ .dev.vars
68
+ .wrangler/
@@ -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.60.3"
12
+ }
13
+ }
@@ -0,0 +1,4 @@
1
+ from js import Response
2
+
3
+ async def on_fetch(request, env):
4
+ return Response.new("Hello World!")
@@ -98,5 +98,6 @@
98
98
  // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
99
99
  "skipLibCheck": true /* Skip type checking all .d.ts files. */
100
100
  },
101
- "exclude": ["test"]
101
+ "exclude": ["test"],
102
+ "include": ["worker-configuration.d.ts", "src/**/*.ts"]
102
103
  }
@@ -1,7 +1,9 @@
1
1
  export default {
2
2
  configVersion: 1,
3
3
  id: "hello-world-durable-object",
4
- displayName: "Co-ordination / multiplayer API (using Durable Objects)",
4
+ displayName: "Hello World Worker Using Durable Objects",
5
+ description:
6
+ "Get started with a basic stateful app to build projects like real-time chats, collaborative apps, and multiplayer games",
5
7
  platform: "workers",
6
8
  copyFiles: {
7
9
  variants: {
@@ -32,16 +32,6 @@ const configure = async (ctx: C3Context) => {
32
32
  const snippets = loadTemplateSnippets(ctx);
33
33
 
34
34
  transformFile(indexFile, {
35
- // Insert the env declaration after the last import (but before the rest of the body)
36
- visitProgram: function (n) {
37
- const lastImportIndex = n.node.body.findLastIndex(
38
- (t) => t.type === "ImportDeclaration",
39
- );
40
- const lastImport = n.get("body", lastImportIndex);
41
- lastImport.insertAfter(...snippets.bindingsTypeTs);
42
-
43
- return this.traverse(n);
44
- },
45
35
  visitVariableDeclarator(n) {
46
36
  if (n.node.id.type === "Identifier" && n.node.id.name === "app") {
47
37
  n.node.init = snippets
@@ -58,6 +48,7 @@ const configure = async (ctx: C3Context) => {
58
48
  const config: TemplateConfig = {
59
49
  configVersion: 1,
60
50
  id: "hono",
51
+ frameworkCli: "create-hono",
61
52
  displayName: "Hono",
62
53
  copyFiles: {
63
54
  path: "./templates",
@@ -1 +1 @@
1
- new Hono<{ Bindings: Bindings }>()
1
+ new Hono<{ Bindings: CloudflareBindings }>()
@@ -175,6 +175,7 @@ const addDevDependencies = async (installEslintPlugin: boolean) => {
175
175
  export default {
176
176
  configVersion: 1,
177
177
  id: "next",
178
+ frameworkCli: "create-next-app",
178
179
  platform: "pages",
179
180
  displayName: "Next",
180
181
  generate,
@@ -112,6 +112,7 @@ const updateNuxtConfig = () => {
112
112
  const config: TemplateConfig = {
113
113
  configVersion: 1,
114
114
  id: "nuxt",
115
+ frameworkCli: "nuxi",
115
116
  platform: "pages",
116
117
  displayName: "Nuxt",
117
118
  copyFiles: {
@@ -2,6 +2,7 @@ export default {
2
2
  configVersion: 1,
3
3
  id: "openapi",
4
4
  displayName: "API starter (OpenAPI compliant)",
5
+ description: "Get started building a basic API on Workers",
5
6
  platform: "workers",
6
7
  copyFiles: {
7
8
  path: "./ts",
@@ -2,6 +2,8 @@ export default {
2
2
  configVersion: 1,
3
3
  id: "queues",
4
4
  displayName: "Queue consumer & producer Worker",
5
+ description:
6
+ "Get started with a Worker that processes background tasks and message batches with Cloudflare Queues",
5
7
  platform: "workers",
6
8
  copyFiles: {
7
9
  variants: {
@@ -125,6 +125,7 @@ const populateCloudflareEnv = () => {
125
125
  const config: TemplateConfig = {
126
126
  configVersion: 1,
127
127
  id: "qwik",
128
+ frameworkCli: "create-qwik",
128
129
  displayName: "Qwik",
129
130
  platform: "pages",
130
131
  copyFiles: {
@@ -1,4 +1,5 @@
1
1
  import { logRaw } from "@cloudflare/cli";
2
+ import { processArgument } from "@cloudflare/cli/args";
2
3
  import { runFrameworkGenerator } from "frameworks/index";
3
4
  import { detectPackageManager } from "helpers/packageManagers";
4
5
  import type { TemplateConfig } from "../../src/templates";
@@ -7,21 +8,50 @@ import type { C3Context } from "types";
7
8
  const { npm } = detectPackageManager();
8
9
 
9
10
  const generate = async (ctx: C3Context) => {
10
- await runFrameworkGenerator(ctx, [ctx.project.name]);
11
+ const variant = await processArgument<string>(ctx.args, "variant", {
12
+ type: "select",
13
+ question: "Select a variant:",
14
+ label: "variant",
15
+ options: variantsOptions,
16
+ defaultValue: variantsOptions[0].value,
17
+ });
18
+
19
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--template", variant]);
11
20
 
12
21
  logRaw("");
13
22
  };
14
23
 
24
+ const variantsOptions = [
25
+ {
26
+ value: "react-ts",
27
+ label: "TypeScript",
28
+ },
29
+ {
30
+ value: "react-swc-ts",
31
+ label: "TypeScript + SWC",
32
+ },
33
+ {
34
+ value: "react",
35
+ label: "JavaScript",
36
+ },
37
+ {
38
+ value: "react-swc",
39
+ label: "JavaScript + SWC",
40
+ },
41
+ ];
42
+
15
43
  const config: TemplateConfig = {
16
44
  configVersion: 1,
17
45
  id: "react",
46
+ // React's documentation now recommends using create-vite.
47
+ frameworkCli: "create-vite",
18
48
  displayName: "React",
19
49
  platform: "pages",
20
50
  generate,
21
51
  transformPackageJson: async () => ({
22
52
  scripts: {
23
- deploy: `${npm} run build && wrangler pages deploy ./build`,
24
- preview: `${npm} run build && wrangler pages dev ./build`,
53
+ deploy: `${npm} run build && wrangler pages deploy ./dist`,
54
+ preview: `${npm} run build && wrangler pages dev ./dist`,
25
55
  },
26
56
  }),
27
57
  devScript: "dev",
@@ -45,6 +45,7 @@ const configure = async () => {
45
45
  const config: TemplateConfig = {
46
46
  configVersion: 1,
47
47
  id: "remix",
48
+ frameworkCli: "create-remix",
48
49
  platform: "pages",
49
50
  displayName: "Remix",
50
51
  copyFiles: {
@@ -2,6 +2,8 @@ export default {
2
2
  configVersion: 1,
3
3
  id: "scheduled",
4
4
  displayName: "Scheduled Worker (Cron Trigger)",
5
+ description:
6
+ "Create a Worker to be executed on a schedule for periodic (cron) jobs",
5
7
  platform: "workers",
6
8
  copyFiles: {
7
9
  variants: {
@@ -65,6 +65,7 @@ const configure = async (ctx: C3Context) => {
65
65
  const config: TemplateConfig = {
66
66
  configVersion: 1,
67
67
  id: "solid",
68
+ frameworkCli: "create-solid",
68
69
  displayName: "Solid",
69
70
  platform: "pages",
70
71
  copyFiles: {
@@ -97,6 +97,7 @@ const updateTypeDefinitions = (ctx: C3Context) => {
97
97
  const config: TemplateConfig = {
98
98
  configVersion: 1,
99
99
  id: "svelte",
100
+ frameworkCli: "create-svelte",
100
101
  displayName: "Svelte",
101
102
  platform: "pages",
102
103
  copyFiles: {
@@ -12,6 +12,7 @@ const generate = async (ctx: C3Context) => {
12
12
  const config: TemplateConfig = {
13
13
  configVersion: 1,
14
14
  id: "vue",
15
+ frameworkCli: "create-vue",
15
16
  displayName: "Vue",
16
17
  platform: "pages",
17
18
  generate,
@@ -0,0 +1,102 @@
1
+ import { resolve } from "node:path";
2
+ import { logRaw } from "@cloudflare/cli";
3
+ import { brandColor, dim } from "@cloudflare/cli/colors";
4
+ import { spinner } from "@cloudflare/cli/interactive";
5
+ import { runFrameworkGenerator } from "frameworks/index";
6
+ import { readFile, readJSON, writeFile } from "helpers/files";
7
+ import { detectPackageManager } from "helpers/packageManagers";
8
+ import { installPackages } from "helpers/packages";
9
+ import type { TemplateConfig } from "../../src/templates";
10
+ import type { C3Context } from "types";
11
+
12
+ const { npm } = detectPackageManager();
13
+
14
+ const generate = async (ctx: C3Context) => {
15
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
16
+ logRaw("");
17
+ };
18
+
19
+ const configure = async (ctx: C3Context) => {
20
+ updateAngularJson(ctx);
21
+ await updateAppCode();
22
+ await installCFWorker();
23
+ };
24
+
25
+ async function installCFWorker() {
26
+ await installPackages(
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
+ );
34
+ }
35
+ async function updateAppCode() {
36
+ const s = spinner();
37
+ s.start(`Updating application code`);
38
+
39
+ // Update an app config file to:
40
+ // - add the `provideHttpClient(withFetch())` call to enable `fetch` usage in `HttpClient`
41
+ const appConfigPath = "src/app/app.config.ts";
42
+ const appConfig = readFile(resolve(appConfigPath));
43
+ const newAppConfig =
44
+ "import { provideHttpClient, withFetch } from '@angular/common/http';\n" +
45
+ appConfig.replace(
46
+ "providers: [",
47
+ "providers: [provideHttpClient(withFetch()), ",
48
+ );
49
+ writeFile(resolve(appConfigPath), newAppConfig);
50
+ s.stop(`${brandColor(`updated`)} ${dim(appConfigPath)}`);
51
+
52
+ // Remove unwanted dependencies
53
+ s.start(`Updating package.json`);
54
+ const packageJsonPath = resolve("package.json");
55
+ const packageManifest = readJSON(packageJsonPath);
56
+
57
+ delete packageManifest["dependencies"]["@angular/ssr"];
58
+ delete packageManifest["dependencies"]["express"];
59
+ delete packageManifest["devDependencies"]["@types/express"];
60
+
61
+ writeFile(packageJsonPath, JSON.stringify(packageManifest, null, 2));
62
+ s.stop(`${brandColor(`updated`)} ${dim(`\`package.json\``)}`);
63
+ }
64
+
65
+ function updateAngularJson(ctx: C3Context) {
66
+ const s = spinner();
67
+ s.start(`Updating angular.json config`);
68
+ const angularJson = readJSON(resolve("angular.json"));
69
+ // Update builder
70
+ const architectSection = angularJson.projects[ctx.project.name].architect;
71
+ architectSection.build.options.outputPath = "dist";
72
+ architectSection.build.options.assets.push("src/_routes.json");
73
+
74
+ writeFile(resolve("angular.json"), JSON.stringify(angularJson, null, 2));
75
+ s.stop(`${brandColor(`updated`)} ${dim(`\`angular.json\``)}`);
76
+ }
77
+
78
+ const config: TemplateConfig = {
79
+ configVersion: 1,
80
+ id: "angular",
81
+ frameworkCli: "@angular/create",
82
+ displayName: "Angular",
83
+ platform: "workers",
84
+ copyFiles: {
85
+ path: "./templates",
86
+ },
87
+ path: "templates-experimental/angular",
88
+ devScript: "start",
89
+ deployScript: "deploy",
90
+ generate,
91
+ configure,
92
+ transformPackageJson: async () => ({
93
+ scripts: {
94
+ start: `${npm} run build && wrangler dev`,
95
+ build: `ng build && ${npm} run process`,
96
+ process:
97
+ "node ./tools/copy-files.mjs && node ./tools/alter-polyfills.mjs",
98
+ deploy: `${npm} run build && wrangler deploy`,
99
+ },
100
+ }),
101
+ };
102
+ export default config;
@@ -0,0 +1,34 @@
1
+ import { renderApplication } from "@angular/platform-server";
2
+ import bootstrap from "./src/main.server";
3
+
4
+ interface Env {
5
+ ASSETS: { fetch: typeof fetch };
6
+ }
7
+
8
+ // We attach the Cloudflare `fetch()` handler to the global scope
9
+ // so that we can export it when we process the Angular output.
10
+ // See tools/bundle.mjs
11
+ async function workerFetchHandler(request: Request, env: Env) {
12
+ const url = new URL(request.url);
13
+ console.log("render SSR", url.href);
14
+
15
+ // Get the root `index.html` content.
16
+ const indexUrl = new URL("/index.html", url);
17
+ const indexResponse = await env.ASSETS.fetch(new Request(indexUrl));
18
+ const document = await indexResponse.text();
19
+
20
+ const content = await renderApplication(bootstrap, {
21
+ document,
22
+ url: url.pathname,
23
+ });
24
+
25
+ // console.log("rendered SSR", content);
26
+ return new Response(content, indexResponse);
27
+ }
28
+
29
+ export default {
30
+ fetch: (request: Request, env: Env) =>
31
+ (globalThis as any)["__zone_symbol__Promise"].resolve(
32
+ workerFetchHandler(request, env),
33
+ ),
34
+ };
@@ -0,0 +1,4 @@
1
+ _worker.js
2
+ _routes.json
3
+ _headers
4
+ _redirects
@@ -0,0 +1,27 @@
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));
@@ -0,0 +1,9 @@
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"));
@@ -0,0 +1,9 @@
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");
@@ -0,0 +1,5 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ main = "./dist/cloudflare/_worker.js"
5
+ experimental_assets = { directory = "./dist/cloudflare", binding = "ASSETS" }
@@ -0,0 +1,114 @@
1
+ import { logRaw, updateStatus } from "@cloudflare/cli";
2
+ import { blue, brandColor, dim } from "@cloudflare/cli/colors";
3
+ import { runFrameworkGenerator } from "frameworks/index";
4
+ import { loadTemplateSnippets, transformFile } from "helpers/codemod";
5
+ import { runCommand } from "helpers/command";
6
+ import { usesTypescript } from "helpers/files";
7
+ import { detectPackageManager } from "helpers/packageManagers";
8
+ import * as recast from "recast";
9
+ import type { TemplateConfig } from "../../src/templates";
10
+ import type { C3Context, PackageJson } from "types";
11
+
12
+ const { npx } = detectPackageManager();
13
+
14
+ const generate = async (ctx: C3Context) => {
15
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--no-install"]);
16
+
17
+ logRaw(""); // newline
18
+ };
19
+
20
+ const configure = async (ctx: C3Context) => {
21
+ await runCommand([npx, "astro", "add", "cloudflare", "-y"], {
22
+ silent: true,
23
+ startText: "Installing adapter",
24
+ doneText: `${brandColor("installed")} ${dim(
25
+ `via \`${npx} astro add cloudflare\``,
26
+ )}`,
27
+ });
28
+
29
+ updateAstroConfig();
30
+ updateEnvDeclaration(ctx);
31
+ };
32
+
33
+ const updateAstroConfig = () => {
34
+ const filePath = "astro.config.mjs";
35
+
36
+ updateStatus(`Updating configuration in ${blue(filePath)}`);
37
+
38
+ transformFile(filePath, {
39
+ visitCallExpression: function (n) {
40
+ const callee = n.node.callee as recast.types.namedTypes.Identifier;
41
+ if (callee.name !== "cloudflare") {
42
+ return this.traverse(n);
43
+ }
44
+
45
+ const b = recast.types.builders;
46
+ n.node.arguments = [
47
+ b.objectExpression([
48
+ b.objectProperty(
49
+ b.identifier("platformProxy"),
50
+ b.objectExpression([
51
+ b.objectProperty(b.identifier("enabled"), b.booleanLiteral(true)),
52
+ ]),
53
+ ),
54
+ ]),
55
+ ];
56
+
57
+ return false;
58
+ },
59
+ });
60
+ };
61
+
62
+ const updateEnvDeclaration = (ctx: C3Context) => {
63
+ if (!usesTypescript(ctx)) {
64
+ return;
65
+ }
66
+
67
+ const filePath = "src/env.d.ts";
68
+
69
+ updateStatus(`Adding type declarations in ${blue(filePath)}`);
70
+
71
+ transformFile(filePath, {
72
+ visitProgram: function (n) {
73
+ const snippets = loadTemplateSnippets(ctx);
74
+ const patch = snippets.runtimeDeclarationTs;
75
+ const b = recast.types.builders;
76
+
77
+ // Preserve comments with the new body
78
+ const comments = n.get("comments").value;
79
+ n.node.comments = comments.map((c: recast.types.namedTypes.CommentLine) =>
80
+ b.commentLine(c.value),
81
+ );
82
+
83
+ // Add the patch
84
+ n.get("body").push(...patch);
85
+
86
+ return false;
87
+ },
88
+ });
89
+ };
90
+
91
+ const config: TemplateConfig = {
92
+ configVersion: 1,
93
+ id: "astro",
94
+ frameworkCli: "create-astro",
95
+ platform: "workers",
96
+ displayName: "Astro",
97
+ copyFiles: {
98
+ path: "./templates",
99
+ },
100
+ devScript: "dev",
101
+ deployScript: "deploy",
102
+ previewScript: "preview",
103
+ path: "templates-experimental/astro",
104
+ generate,
105
+ configure,
106
+ transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
107
+ scripts: {
108
+ deploy: `astro build && wrangler deploy`,
109
+ preview: `astro build && wrangler dev`,
110
+ ...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
111
+ },
112
+ }),
113
+ };
114
+ export default config;
@@ -0,0 +1,5 @@
1
+ type Runtime = import("@astrojs/cloudflare").Runtime<Env>;
2
+
3
+ declare namespace App {
4
+ interface Locals extends Runtime {}
5
+ }
@@ -0,0 +1,4 @@
1
+ _worker.js
2
+ _routes.json
3
+ _headers
4
+ _redirects
@@ -0,0 +1,6 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ compatibility_flags = ["nodejs_compat_v2"]
5
+ main = "./dist/_worker.js"
6
+ experimental_assets = { directory = "./dist", binding = "ASSETS" }
@@ -0,0 +1,32 @@
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, "classic"]);
10
+ };
11
+
12
+ const config: TemplateConfig = {
13
+ configVersion: 1,
14
+ id: "docusaurus",
15
+ frameworkCli: "create-docusaurus",
16
+ platform: "workers",
17
+ displayName: "Docusaurus",
18
+ copyFiles: {
19
+ path: "./templates",
20
+ },
21
+ path: "templates-experimental/docusaurus",
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: "start",
30
+ deployScript: "deploy",
31
+ };
32
+ export default config;
@@ -0,0 +1,4 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ experimental_assets = { directory = "./build" }