create-cloudflare 0.0.0-e3990bbf → 0.0.0-e39e9ff4

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 (142) hide show
  1. package/README.md +1 -52
  2. package/dist/cli.js +71526 -52355
  3. package/package.json +28 -13
  4. package/templates/analog/c3.ts +134 -0
  5. package/templates/analog/snippets/devBindingsModule.ts +7 -0
  6. package/templates/analog/templates/env.d.ts +13 -0
  7. package/templates/analog/templates/src/dev-bindings.ts +18 -0
  8. package/templates/analog/templates/worker-configuration.d.ts +4 -0
  9. package/templates/analog/templates/wrangler.toml +78 -0
  10. package/templates/angular/c3.ts +100 -0
  11. package/{dist/angular/templates/src/main.server.ts → templates/angular/templates/server.ts} +14 -15
  12. package/templates/angular/templates/tools/alter-polyfills.mjs +27 -0
  13. package/templates/angular/templates/tools/copy-files.mjs +9 -0
  14. package/templates/astro/c3.ts +112 -0
  15. package/templates/astro/snippets/runtimeDeclaration.ts +5 -0
  16. package/templates/astro/templates/wrangler.toml +78 -0
  17. package/templates/common/c3.ts +16 -0
  18. package/templates/common/js/.editorconfig +0 -1
  19. package/templates/common/js/__dot__gitignore +172 -0
  20. package/templates/common/js/package.json +1 -0
  21. package/templates/common/js/wrangler.toml +72 -23
  22. package/templates/common/ts/.editorconfig +0 -1
  23. package/templates/common/ts/__dot__gitignore +172 -0
  24. package/templates/common/ts/package.json +3 -2
  25. package/templates/common/ts/src/index.ts +3 -0
  26. package/templates/common/ts/worker-configuration.d.ts +2 -14
  27. package/templates/common/ts/wrangler.toml +72 -23
  28. package/templates/docusaurus/c3.ts +26 -0
  29. package/templates/gatsby/c3.ts +48 -0
  30. package/templates/hello-world/c3.ts +16 -0
  31. package/templates/hello-world/js/.editorconfig +0 -1
  32. package/templates/hello-world/js/__dot__gitignore +172 -0
  33. package/templates/hello-world/js/package.json +6 -2
  34. package/templates/hello-world/js/test/index.spec.js +20 -0
  35. package/templates/hello-world/js/vitest.config.js +11 -0
  36. package/templates/hello-world/js/wrangler.toml +73 -23
  37. package/templates/hello-world/ts/.editorconfig +0 -1
  38. package/templates/hello-world/ts/__dot__gitignore +172 -0
  39. package/templates/hello-world/ts/package.json +7 -3
  40. package/templates/hello-world/ts/src/index.ts +3 -17
  41. package/templates/hello-world/ts/test/index.spec.ts +25 -0
  42. package/templates/hello-world/ts/test/tsconfig.json +11 -0
  43. package/templates/hello-world/ts/tsconfig.json +3 -2
  44. package/templates/hello-world/ts/vitest.config.ts +11 -0
  45. package/templates/hello-world/ts/worker-configuration.d.ts +4 -0
  46. package/templates/hello-world/ts/wrangler.toml +73 -23
  47. package/templates/hello-world-durable-object/c3.ts +16 -0
  48. package/templates/hello-world-durable-object/js/.editorconfig +12 -0
  49. package/templates/hello-world-durable-object/js/.prettierrc +6 -0
  50. package/templates/hello-world-durable-object/js/__dot__gitignore +172 -0
  51. package/templates/hello-world-durable-object/js/package.json +13 -0
  52. package/templates/hello-world-durable-object/js/src/index.js +69 -0
  53. package/templates/hello-world-durable-object/js/wrangler.toml +100 -0
  54. package/templates/hello-world-durable-object/ts/.editorconfig +12 -0
  55. package/templates/hello-world-durable-object/ts/.prettierrc +6 -0
  56. package/templates/hello-world-durable-object/ts/__dot__gitignore +172 -0
  57. package/templates/hello-world-durable-object/ts/package.json +15 -0
  58. package/templates/hello-world-durable-object/ts/src/index.ts +86 -0
  59. package/templates/hello-world-durable-object/ts/tsconfig.json +101 -0
  60. package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +6 -0
  61. package/templates/hello-world-durable-object/ts/wrangler.toml +100 -0
  62. package/templates/hello-world-python/c3.ts +9 -0
  63. package/templates/hello-world-python/py/__dot__gitignore +68 -0
  64. package/templates/hello-world-python/py/package.json +13 -0
  65. package/templates/hello-world-python/py/src/entry.py +4 -0
  66. package/templates/hello-world-python/py/wrangler.toml +101 -0
  67. package/templates/hono/c3.ts +25 -0
  68. package/templates/next/README.md +68 -0
  69. package/templates/next/app/js/app/api/hello/route.js +21 -0
  70. package/templates/next/app/js/app/not-found.js +58 -0
  71. package/templates/next/app/ts/app/api/hello/route.ts +22 -0
  72. package/templates/next/app/ts/app/not-found.tsx +58 -0
  73. package/templates/next/c3.ts +236 -0
  74. package/templates/next/env.d.ts +5 -0
  75. package/templates/next/pages/js/pages/api/hello.js +23 -0
  76. package/templates/next/pages/ts/pages/api/hello.ts +24 -0
  77. package/templates/next/wrangler.toml +79 -0
  78. package/templates/nuxt/c3.ts +134 -0
  79. package/templates/nuxt/templates/env.d.ts +14 -0
  80. package/templates/nuxt/templates/worker-configuration.d.ts +4 -0
  81. package/templates/nuxt/templates/wrangler.toml +78 -0
  82. package/templates/openapi/c3.ts +9 -0
  83. package/templates/openapi/ts/__dot__gitignore +171 -0
  84. package/templates/openapi/ts/package.json +3 -2
  85. package/templates/openapi/ts/src/endpoints/taskList.ts +1 -1
  86. package/templates/openapi/ts/src/index.ts +2 -2
  87. package/templates/openapi/ts/worker-configuration.d.ts +4 -0
  88. package/templates/openapi/ts/wrangler.toml +97 -0
  89. package/templates/pre-existing/c3.ts +83 -0
  90. package/templates/pre-existing/js/.editorconfig +12 -0
  91. package/templates/pre-existing/js/.prettierrc +6 -0
  92. package/templates/pre-existing/js/__dot__gitignore +172 -0
  93. package/templates/pre-existing/js/package.json +13 -0
  94. package/templates/pre-existing/js/wrangler.toml +4 -0
  95. package/templates/queues/c3.ts +26 -0
  96. package/templates/queues/js/.editorconfig +0 -1
  97. package/templates/queues/js/__dot__gitignore +172 -0
  98. package/templates/queues/js/package.json +1 -0
  99. package/templates/queues/js/wrangler.toml +88 -2
  100. package/templates/queues/ts/.editorconfig +0 -1
  101. package/templates/queues/ts/__dot__gitignore +172 -0
  102. package/templates/queues/ts/package.json +3 -2
  103. package/templates/queues/ts/src/index.ts +3 -5
  104. package/templates/queues/ts/worker-configuration.d.ts +5 -0
  105. package/templates/queues/ts/wrangler.toml +88 -2
  106. package/templates/qwik/c3.ts +146 -0
  107. package/templates/qwik/snippets/getPlatformProxy.ts +6 -0
  108. package/templates/qwik/templates/worker-configuration.d.ts +4 -0
  109. package/templates/qwik/templates/wrangler.toml +78 -0
  110. package/templates/react/c3.ts +31 -0
  111. package/templates/remix/c3.ts +66 -0
  112. package/templates/remix/templates/worker-configuration.d.ts +4 -0
  113. package/templates/remix/templates/wrangler.toml +78 -0
  114. package/templates/scheduled/c3.ts +16 -0
  115. package/templates/scheduled/js/.editorconfig +0 -1
  116. package/templates/scheduled/js/__dot__gitignore +172 -0
  117. package/templates/scheduled/js/package.json +1 -0
  118. package/templates/scheduled/js/wrangler.toml +98 -1
  119. package/templates/scheduled/ts/.editorconfig +0 -1
  120. package/templates/scheduled/ts/__dot__gitignore +172 -0
  121. package/templates/scheduled/ts/package.json +3 -2
  122. package/templates/scheduled/ts/src/index.ts +3 -20
  123. package/templates/scheduled/ts/worker-configuration.d.ts +4 -0
  124. package/templates/scheduled/ts/wrangler.toml +98 -1
  125. package/templates/solid/c3.ts +84 -0
  126. package/templates/solid/templates/wrangler.toml +77 -0
  127. package/templates/svelte/c3.ts +130 -0
  128. package/templates/svelte/js/wrangler.toml +78 -0
  129. package/templates/svelte/ts/wrangler.toml +78 -0
  130. package/templates/vue/c3.ts +28 -0
  131. package/dist/angular/templates/tools/bundle.mjs +0 -77
  132. package/dist/angular/templates/tools/copy-client-files.mjs +0 -4
  133. package/dist/angular/templates/tools/copy-worker-files.mjs +0 -10
  134. package/dist/angular/templates/tsconfig.server.json +0 -5
  135. package/templates/chatgptPlugin/ts/.assets/example.png +0 -0
  136. package/templates/chatgptPlugin/ts/README.md +0 -25
  137. package/templates/chatgptPlugin/ts/package.json +0 -16
  138. package/templates/chatgptPlugin/ts/src/index.ts +0 -33
  139. package/templates/chatgptPlugin/ts/src/search.ts +0 -59
  140. package/templates/chatgptPlugin/ts/wrangler.toml +0 -3
  141. /package/{dist → templates}/angular/templates/src/_routes.json +0 -0
  142. /package/{dist → templates}/angular/templates/tools/paths.mjs +0 -0
@@ -0,0 +1,100 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ main = "src/index.ts"
4
+ compatibility_date = "<TBD>"
5
+
6
+ # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
7
+ # Docs:
8
+ # - https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
9
+ # Note: Use secrets to store sensitive data.
10
+ # - https://developers.cloudflare.com/workers/configuration/secrets/
11
+ # [vars]
12
+ # MY_VARIABLE = "production_value"
13
+
14
+ # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
15
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#workers-ai
16
+ # [ai]
17
+ # binding = "AI"
18
+
19
+ # Bind an Analytics Engine dataset. Use Analytics Engine to write analytics within your Pages Function.
20
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#analytics-engine-datasets
21
+ # [[analytics_engine_datasets]]
22
+ # binding = "MY_DATASET"
23
+
24
+ # Bind a headless browser instance running on Cloudflare's global network.
25
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#browser-rendering
26
+ # [browser]
27
+ # binding = "MY_BROWSER"
28
+
29
+ # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
30
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#d1-databases
31
+ # [[d1_databases]]
32
+ # binding = "MY_DB"
33
+ # database_name = "my-database"
34
+ # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
35
+
36
+ # Bind a dispatch namespace. Use Workers for Platforms to deploy serverless functions programmatically on behalf of your customers.
37
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#dispatch-namespace-bindings-workers-for-platforms
38
+ # [[dispatch_namespaces]]
39
+ # binding = "MY_DISPATCHER"
40
+ # namespace = "my-namespace"
41
+
42
+ # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
43
+ # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
44
+ # Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
45
+ [[durable_objects.bindings]]
46
+ name = "MY_DURABLE_OBJECT"
47
+ class_name = "MyDurableObject"
48
+
49
+ # Durable Object migrations.
50
+ # Docs: https://developers.cloudflare.com/workers/learning/using-durable-objects#configure-durable-object-classes-with-migrations
51
+ [[migrations]]
52
+ tag = "v1"
53
+ new_classes = ["MyDurableObject"]
54
+
55
+ # Bind a Hyperdrive configuration. Use to accelerate access to your existing databases from Cloudflare Workers.
56
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#hyperdrive
57
+ # [[hyperdrive]]
58
+ # binding = "MY_HYPERDRIVE"
59
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
60
+
61
+ # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
62
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#kv-namespaces
63
+ # [[kv_namespaces]]
64
+ # binding = "MY_KV_NAMESPACE"
65
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
66
+
67
+ # Bind an mTLS certificate. Use to present a client certificate when communicating with another service.
68
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#mtls-certificates
69
+ # [[mtls_certificates]]
70
+ # binding = "MY_CERTIFICATE"
71
+ # certificate_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
72
+
73
+ # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
74
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#queues
75
+ # [[queues.producers]]
76
+ # binding = "MY_QUEUE"
77
+ # queue = "my-queue"
78
+
79
+ # Bind a Queue consumer. Queue Consumers can retrieve tasks scheduled by Producers to act on them.
80
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#queues
81
+ # [[queues.consumers]]
82
+ # queue = "my-queue"
83
+
84
+ # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
85
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#r2-buckets
86
+ # [[r2_buckets]]
87
+ # binding = "MY_BUCKET"
88
+ # bucket_name = "my-bucket"
89
+
90
+ # Bind another Worker service. Use this binding to call another Worker without network overhead.
91
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
92
+ # [[services]]
93
+ # binding = "MY_SERVICE"
94
+ # service = "my-service"
95
+
96
+ # Bind a Vectorize index. Use to store and query vector embeddings for semantic search, classification and other vector search use-cases.
97
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#vectorize-indexes
98
+ # [[vectorize]]
99
+ # binding = "MY_INDEX"
100
+ # index_name = "my-index"
@@ -0,0 +1,9 @@
1
+ export default {
2
+ configVersion: 1,
3
+ id: "hello-world-python",
4
+ displayName: '"Hello World" Worker (Python)',
5
+ platform: "workers",
6
+ copyFiles: {
7
+ path: "./py",
8
+ },
9
+ };
@@ -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.0.0"
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!")
@@ -0,0 +1,101 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ main = "src/entry.py"
4
+ compatibility_flags = ["python_workers"]
5
+ compatibility_date = "<TBD>"
6
+
7
+ # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
8
+ # Docs:
9
+ # - https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
10
+ # Note: Use secrets to store sensitive data.
11
+ # - https://developers.cloudflare.com/workers/configuration/secrets/
12
+ # [vars]
13
+ # MY_VARIABLE = "production_value"
14
+
15
+ # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
16
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#workers-ai
17
+ # [ai]
18
+ # binding = "AI"
19
+
20
+ # Bind an Analytics Engine dataset. Use Analytics Engine to write analytics within your Pages Function.
21
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#analytics-engine-datasets
22
+ # [[analytics_engine_datasets]]
23
+ # binding = "MY_DATASET"
24
+
25
+ # Bind a headless browser instance running on Cloudflare's global network.
26
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#browser-rendering
27
+ # [browser]
28
+ # binding = "MY_BROWSER"
29
+
30
+ # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
31
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#d1-databases
32
+ # [[d1_databases]]
33
+ # binding = "MY_DB"
34
+ # database_name = "my-database"
35
+ # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
36
+
37
+ # Bind a dispatch namespace. Use Workers for Platforms to deploy serverless functions programmatically on behalf of your customers.
38
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#dispatch-namespace-bindings-workers-for-platforms
39
+ # [[dispatch_namespaces]]
40
+ # binding = "MY_DISPATCHER"
41
+ # namespace = "my-namespace"
42
+
43
+ # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
44
+ # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
45
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#durable-objects
46
+ # [[durable_objects.bindings]]
47
+ # name = "MY_DURABLE_OBJECT"
48
+ # class_name = "MyDurableObject"
49
+
50
+ # Durable Object migrations.
51
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#migrations
52
+ # [[migrations]]
53
+ # tag = "v1"
54
+ # new_classes = ["MyDurableObject"]
55
+
56
+ # Bind a Hyperdrive configuration. Use to accelerate access to your existing databases from Cloudflare Workers.
57
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#hyperdrive
58
+ # [[hyperdrive]]
59
+ # binding = "MY_HYPERDRIVE"
60
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
61
+
62
+ # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
63
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#kv-namespaces
64
+ # [[kv_namespaces]]
65
+ # binding = "MY_KV_NAMESPACE"
66
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
67
+
68
+ # Bind an mTLS certificate. Use to present a client certificate when communicating with another service.
69
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#mtls-certificates
70
+ # [[mtls_certificates]]
71
+ # binding = "MY_CERTIFICATE"
72
+ # certificate_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
73
+
74
+ # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
75
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#queues
76
+ # [[queues.producers]]
77
+ # binding = "MY_QUEUE"
78
+ # queue = "my-queue"
79
+
80
+ # Bind a Queue consumer. Queue Consumers can retrieve tasks scheduled by Producers to act on them.
81
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#queues
82
+ # [[queues.consumers]]
83
+ # queue = "my-queue"
84
+
85
+ # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
86
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#r2-buckets
87
+ # [[r2_buckets]]
88
+ # binding = "MY_BUCKET"
89
+ # bucket_name = "my-bucket"
90
+
91
+ # Bind another Worker service. Use this binding to call another Worker without network overhead.
92
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
93
+ # [[services]]
94
+ # binding = "MY_SERVICE"
95
+ # service = "my-service"
96
+
97
+ # Bind a Vectorize index. Use to store and query vector embeddings for semantic search, classification and other vector search use-cases.
98
+ # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#vectorize-indexes
99
+ # [[vectorize]]
100
+ # binding = "MY_INDEX"
101
+ # index_name = "my-index"
@@ -0,0 +1,25 @@
1
+ import { logRaw } from "@cloudflare/cli";
2
+ import { runFrameworkGenerator } from "frameworks/index";
3
+ import type { TemplateConfig } from "../../src/templates";
4
+ import type { C3Context } from "types";
5
+
6
+ const generate = async (ctx: C3Context) => {
7
+ await runFrameworkGenerator(ctx, [
8
+ ctx.project.name,
9
+ "--template",
10
+ "cloudflare-workers",
11
+ ]);
12
+
13
+ logRaw(""); // newline
14
+ };
15
+
16
+ const config: TemplateConfig = {
17
+ configVersion: 1,
18
+ id: "hono",
19
+ displayName: "Hono",
20
+ platform: "workers",
21
+ generate,
22
+ devScript: "dev",
23
+ deployScript: "deploy",
24
+ };
25
+ export default config;
@@ -0,0 +1,68 @@
1
+ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`c3`](https://developers.cloudflare.com/pages/get-started/c3).
2
+
3
+ ## Getting Started
4
+
5
+ First, run the development server:
6
+
7
+ ```bash
8
+ npm run dev
9
+ # or
10
+ yarn dev
11
+ # or
12
+ pnpm dev
13
+ # or
14
+ bun dev
15
+ ```
16
+
17
+ Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18
+
19
+ ## Cloudflare integration
20
+
21
+ Besides the `dev` script mentioned above `c3` has added a few extra scripts that allow you to integrate the application with the [Cloudflare Pages](https://pages.cloudflare.com/) environment, these are:
22
+ - `pages:build` to build the application for Pages using the [`@cloudflare/next-on-pages`](https://github.com/cloudflare/next-on-pages) CLI
23
+ - `preview` to locally preview your Pages application using the [Wrangler](https://developers.cloudflare.com/workers/wrangler/) CLI
24
+ - `deploy` to deploy your Pages application using the [Wrangler](https://developers.cloudflare.com/workers/wrangler/) CLI
25
+
26
+ > __Note:__ while the `dev` script is optimal for local development you should preview your Pages application as well (periodically or before deployments) in order to make sure that it can properly work in the Pages environment (for more details see the [`@cloudflare/next-on-pages` recommended workflow](https://github.com/cloudflare/next-on-pages/blob/05b6256/internal-packages/next-dev/README.md#recommended-workflow))
27
+
28
+ ### Bindings
29
+
30
+ Cloudflare [Bindings](https://developers.cloudflare.com/pages/functions/bindings/) are what allows you to interact with resources available in the Cloudflare Platform.
31
+
32
+ You can use bindings during development, when previewing locally your application and of course in the deployed application:
33
+
34
+ - To use bindings in dev mode you need to define them in the `next.config.js` file under `setupDevBindings`, this mode uses the `next-dev` `@cloudflare/next-on-pages` submodule. For more details see its [documentation](https://github.com/cloudflare/next-on-pages/blob/05b6256/internal-packages/next-dev/README.md).
35
+
36
+ - To use bindings in the preview mode you need to add them to the `pages:preview` script accordingly to the `wrangler pages dev` command. For more details see its [documentation](https://developers.cloudflare.com/workers/wrangler/commands/#dev-1) or the [Pages Bindings documentation](https://developers.cloudflare.com/pages/functions/bindings/).
37
+
38
+ - To use bindings in the deployed application you will need to configure them in the Cloudflare [dashboard](https://dash.cloudflare.com/). For more details see the [Pages Bindings documentation](https://developers.cloudflare.com/pages/functions/bindings/).
39
+
40
+ #### KV Example
41
+
42
+ `c3` has added for you an example showing how you can use a KV binding.
43
+
44
+ In order to enable the example:
45
+ - Search for javascript/typescript lines containing the following comment:
46
+ ```ts
47
+ // KV Example:
48
+ ```
49
+ and uncomment the commented lines below it.
50
+ - Do the same in the `wrangler.toml` file, where
51
+ the comment is:
52
+ ```
53
+ # KV Example:
54
+ ```
55
+ - If you're using TypeScript run the `cf-typegen` script to update the `env.d.ts` file:
56
+ ```bash
57
+ npm run cf-typegen
58
+ # or
59
+ yarn cf-typegen
60
+ # or
61
+ pnpm cf-typegen
62
+ # or
63
+ bun cf-typegen
64
+ ```
65
+
66
+ After doing this you can run the `dev` or `preview` script and visit the `/api/hello` route to see the example in action.
67
+
68
+ Finally, if you also want to see the example work in the deployed application make sure to add a `MY_KV_NAMESPACE` binding to your Pages application in its [dashboard kv bindings settings section](https://dash.cloudflare.com/?to=/:account/pages/view/:pages-project/settings/functions#kv_namespace_bindings_section). After having configured it make sure to re-deploy your application.
@@ -0,0 +1,21 @@
1
+ import { getRequestContext } from '@cloudflare/next-on-pages'
2
+
3
+ export const runtime = 'edge'
4
+
5
+ export async function GET(request) {
6
+ let responseText = 'Hello World'
7
+
8
+ // In the edge runtime you can use Bindings that are available in your application
9
+ // (for more details see:
10
+ // - https://developers.cloudflare.com/pages/framework-guides/deploy-a-nextjs-site/#use-bindings-in-your-nextjs-application
11
+ // - https://developers.cloudflare.com/pages/functions/bindings/
12
+ // )
13
+ //
14
+ // KV Example:
15
+ // const myKv = getRequestContext().env.MY_KV_NAMESPACE
16
+ // await myKv.put('suffix', ' from a KV store!')
17
+ // const suffix = await myKv.get('suffix')
18
+ // responseText += suffix
19
+
20
+ return new Response(responseText)
21
+ }
@@ -0,0 +1,58 @@
1
+ export const runtime = "edge";
2
+
3
+ export default function NotFound() {
4
+ return (
5
+ <>
6
+ <title>404: This page could not be found.</title>
7
+ <div style={styles.error}>
8
+ <div>
9
+ <style
10
+ dangerouslySetInnerHTML={{
11
+ __html: `body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}`,
12
+ }}
13
+ />
14
+ <h1 className="next-error-h1" style={styles.h1}>
15
+ 404
16
+ </h1>
17
+ <div style={styles.desc}>
18
+ <h2 style={styles.h2}>This page could not be found.</h2>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ </>
23
+ );
24
+ }
25
+
26
+ const styles = {
27
+ error: {
28
+ fontFamily:
29
+ 'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',
30
+ height: "100vh",
31
+ textAlign: "center",
32
+ display: "flex",
33
+ flexDirection: "column",
34
+ alignItems: "center",
35
+ justifyContent: "center",
36
+ },
37
+
38
+ desc: {
39
+ display: "inline-block",
40
+ },
41
+
42
+ h1: {
43
+ display: "inline-block",
44
+ margin: "0 20px 0 0",
45
+ padding: "0 23px 0 0",
46
+ fontSize: 24,
47
+ fontWeight: 500,
48
+ verticalAlign: "top",
49
+ lineHeight: "49px",
50
+ },
51
+
52
+ h2: {
53
+ fontSize: 14,
54
+ fontWeight: 400,
55
+ lineHeight: "49px",
56
+ margin: 0,
57
+ },
58
+ };
@@ -0,0 +1,22 @@
1
+ import type { NextRequest } from 'next/server'
2
+ import { getRequestContext } from '@cloudflare/next-on-pages'
3
+
4
+ export const runtime = 'edge'
5
+
6
+ export async function GET(request: NextRequest) {
7
+ let responseText = 'Hello World'
8
+
9
+ // In the edge runtime you can use Bindings that are available in your application
10
+ // (for more details see:
11
+ // - https://developers.cloudflare.com/pages/framework-guides/deploy-a-nextjs-site/#use-bindings-in-your-nextjs-application
12
+ // - https://developers.cloudflare.com/pages/functions/bindings/
13
+ // )
14
+ //
15
+ // KV Example:
16
+ // const myKv = getRequestContext().env.MY_KV_NAMESPACE
17
+ // await myKv.put('suffix', ' from a KV store!')
18
+ // const suffix = await myKv.get('suffix')
19
+ // responseText += suffix
20
+
21
+ return new Response(responseText)
22
+ }
@@ -0,0 +1,58 @@
1
+ export const runtime = "edge";
2
+
3
+ export default function NotFound() {
4
+ return (
5
+ <>
6
+ <title>404: This page could not be found.</title>
7
+ <div style={styles.error}>
8
+ <div>
9
+ <style
10
+ dangerouslySetInnerHTML={{
11
+ __html: `body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}`,
12
+ }}
13
+ />
14
+ <h1 className="next-error-h1" style={styles.h1}>
15
+ 404
16
+ </h1>
17
+ <div style={styles.desc}>
18
+ <h2 style={styles.h2}>This page could not be found.</h2>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ </>
23
+ );
24
+ }
25
+
26
+ const styles = {
27
+ error: {
28
+ fontFamily:
29
+ 'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',
30
+ height: "100vh",
31
+ textAlign: "center",
32
+ display: "flex",
33
+ flexDirection: "column",
34
+ alignItems: "center",
35
+ justifyContent: "center",
36
+ },
37
+
38
+ desc: {
39
+ display: "inline-block",
40
+ },
41
+
42
+ h1: {
43
+ display: "inline-block",
44
+ margin: "0 20px 0 0",
45
+ padding: "0 23px 0 0",
46
+ fontSize: 24,
47
+ fontWeight: 500,
48
+ verticalAlign: "top",
49
+ lineHeight: "49px",
50
+ },
51
+
52
+ h2: {
53
+ fontSize: 14,
54
+ fontWeight: 400,
55
+ lineHeight: "49px",
56
+ margin: 0,
57
+ },
58
+ } as const;