@modern-js/main-doc 2.0.0-beta.5 → 2.0.0-beta.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/en/docusaurus-plugin-content-docs/current/apis/app/hooks/src/index_.md +1 -1
  3. package/en/docusaurus-plugin-content-docs/current/apis/app/hooks/src/pages.md +1 -1
  4. package/en/docusaurus-plugin-content-docs/current/apis/app/hooks/src/routes.md +86 -0
  5. package/en/docusaurus-plugin-content-docs/current/apis/app/runtime/core/use-module-apps.md +1 -1
  6. package/en/docusaurus-plugin-content-docs/current/apis/app/runtime/router/router.md +176 -373
  7. package/en/docusaurus-plugin-content-docs/current/components/enable-bff.md +36 -0
  8. package/en/docusaurus-plugin-content-docs/current/components/global-proxy-config.md +74 -0
  9. package/en/docusaurus-plugin-content-docs/current/components/global-proxy.md +28 -0
  10. package/en/docusaurus-plugin-content-docs/current/components/router-legacy-tip.md +1 -0
  11. package/en/docusaurus-plugin-content-docs/current/configure/app/auto-load-plugin.md +62 -0
  12. package/en/docusaurus-plugin-content-docs/current/configure/app/dev/proxy.md +2 -72
  13. package/en/docusaurus-plugin-content-docs/current/configure/app/runtime/router.md +17 -2
  14. package/en/docusaurus-plugin-content-docs/current/configure/app/source/entries.md +0 -2
  15. package/en/docusaurus-plugin-content-docs/current/configure/app/tools/tailwindcss.md +16 -22
  16. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/bff/_category_.json +8 -0
  17. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/bff/bff-proxy.md +27 -0
  18. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/bff/frameworks.md +150 -0
  19. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/bff/function.md +222 -0
  20. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/bff/index.md +20 -0
  21. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/bff/type.md +43 -0
  22. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/code-split.md +77 -0
  23. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/compatibility.md +76 -0
  24. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/eslint.md +145 -0
  25. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/index.md +12 -0
  26. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/low-level.md +46 -0
  27. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/ssg.md +132 -0
  28. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/ssr.md +306 -0
  29. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/testing.md +46 -0
  30. package/en/docusaurus-plugin-content-docs/current/guides/advanced-features/web-server.md +57 -0
  31. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/alias.md +67 -0
  32. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/css/tailwindcss.md +30 -35
  33. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/data-fetch.md +400 -0
  34. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/env-vars.md +166 -0
  35. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/html.md +235 -0
  36. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/mock.md +78 -0
  37. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/proxy.md +60 -0
  38. package/en/docusaurus-plugin-content-docs/current/guides/basic-features/routes.md +0 -2
  39. package/en/docusaurus-plugin-content-docs/current/guides/get-started/quick-start.md +2 -4
  40. package/package.json +4 -4
  41. package/zh/apis/app/hooks/src/index_.md +1 -1
  42. package/zh/apis/app/hooks/src/pages.md +1 -1
  43. package/zh/apis/app/hooks/src/routes.md +89 -0
  44. package/zh/apis/app/runtime/core/use-module-apps.md +1 -1
  45. package/zh/apis/app/runtime/router/router.md +170 -368
  46. package/zh/components/debug-app.md +1 -2
  47. package/zh/components/enable-bff.md +36 -0
  48. package/zh/components/global-proxy-config.md +70 -0
  49. package/zh/components/micro-master-manifest-config.md +15 -0
  50. package/zh/components/router-legacy-tip.md +1 -0
  51. package/zh/configure/app/auto-load-plugin.md +62 -0
  52. package/zh/configure/app/deploy/microFrontend.md +0 -10
  53. package/zh/configure/app/dev/proxy.md +2 -70
  54. package/zh/configure/app/runtime/master-app.md +2 -16
  55. package/zh/configure/app/runtime/router.md +17 -3
  56. package/zh/configure/app/source/entries.md +1 -3
  57. package/zh/configure/app/tools/_category_.json +1 -1
  58. package/zh/configure/app/tools/tailwindcss.md +16 -23
  59. package/zh/guides/advanced-features/bff/frameworks.md +2 -0
  60. package/zh/guides/advanced-features/bff/function.md +44 -24
  61. package/zh/guides/advanced-features/code-split.md +28 -20
  62. package/zh/guides/advanced-features/compatibility.md +24 -14
  63. package/zh/guides/advanced-features/ssg.md +5 -47
  64. package/zh/guides/advanced-features/ssr.md +1 -1
  65. package/zh/guides/advanced-features/testing.md +2 -2
  66. package/zh/guides/basic-features/alias.md +5 -5
  67. package/zh/guides/basic-features/css/tailwindcss.md +31 -35
  68. package/zh/guides/basic-features/data-fetch.md +7 -6
  69. package/zh/guides/basic-features/env-vars.md +2 -2
  70. package/zh/guides/basic-features/html.md +62 -137
  71. package/zh/guides/basic-features/mock.md +8 -9
  72. package/zh/guides/basic-features/proxy.md +2 -2
  73. package/zh/guides/basic-features/routes.md +37 -6
  74. package/zh/guides/get-started/quick-start.md +1 -2
  75. package/zh/guides/topic-detail/framework-plugin/implement.md +54 -6
  76. package/zh/guides/topic-detail/micro-frontend/c02-development.md +2 -2
  77. package/zh/guides/topic-detail/micro-frontend/c03-main-app.md +1 -1
  78. package/en/docusaurus-plugin-content-docs/current/configure/app/dev/with-master-app.md +0 -31
  79. package/zh/configure/app/dev/with-master-app.md +0 -32
@@ -0,0 +1,74 @@
1
+ * Type: `string | Object`
2
+ * Default: `null`
3
+
4
+ When this option is configured, the development environment will start a global proxy, similar to [Fiddler](https://www.telerik.com/fiddler), [Charles](https://www.charlesproxy.com/) and other web proxy debugging tools, which can be used to view, modify HTTP/HTTPS requests, responses, and can also be used as a proxy server.
5
+
6
+
7
+ :::tip 提示
8
+ Using this option requires advance installation `@modern-js/plugin-proxy`。
9
+ :::
10
+
11
+ ### Object
12
+
13
+ Using this option requires that the value of `Object` be installed in advance, the `key` of the object corresponds to the matching `pattern`, and the `value` of the object corresponds to the matching `target`.
14
+
15
+ Example:
16
+
17
+ ```typescript title="modern.config.ts"
18
+ export default defineConfig({
19
+ dev: {
20
+ proxy: {
21
+ 'https://www.baidu.com': 'https://google.com.hk',
22
+ //可以通过 file 协议直接返回静态文件。
23
+ 'https://example.com/api': 'file://./data.json',
24
+ }
25
+ }
26
+ });
27
+ ```
28
+
29
+ ### String
30
+
31
+ When the value is `string`, it can be used to specify a separate proxy file, for example:
32
+
33
+
34
+ ```typescript title="modern.config.ts"
35
+ export default defineConfig({
36
+ dev: {
37
+ proxy: './proxy.js',
38
+ },
39
+ });
40
+ ```
41
+
42
+ ```js title="proxy.js"
43
+ module.exports = {
44
+ name: 'my-app',
45
+ rules: `
46
+ ^example.com:8080/api/*** http://localhost:3001/api/$
47
+ `,
48
+ };
49
+ ```
50
+
51
+ :::info
52
+ Modern.js global proxy implementation is based on [whistle](https://wproxy.org/whistle/), for more matching patterns, please refer to: [Matching Patterns](https://wproxy.org/whistle/pattern.html)
53
+ :::
54
+
55
+ Execute `dev`, when the prompt is as follows, the proxy server starts successfully:
56
+
57
+ ```bash
58
+ App running at:
59
+
60
+ Local: http://localhost:8080/
61
+ Network: http://192.168.0.1:8080/
62
+
63
+ ℹ info Starting the proxy server.....
64
+ ✔ success Proxy Server start on localhost:8899
65
+ ```
66
+
67
+ Access the `localhost:8899` to view the Network and configure proxy rules on the UI interface:
68
+
69
+ ![proxy UI](https://lf3-static.bytednsdoc.com/obj/eden-cn/aphqeh7uhohpquloj/modern-js/docs/dev-proxy.png)
70
+
71
+ :::caution Caution
72
+ The https agent automatically installs the certificate to obtain root privileges. Please enter the password as prompted. ** The password is only used when the certificate is trusted and will not be leaked or used for other links **.
73
+ :::
74
+
@@ -0,0 +1,28 @@
1
+
2
+ Modern.js provides out-of-the-box global proxy plugin `@modern-js/plugin-proxy`, which is based on [whistle](https://github.com/avwo/whistle) and can be used to view and modify HTTP/HTTPS requests and responses, and can also be used as an HTTP proxy server.
3
+
4
+ ### Set Proxy Rules
5
+
6
+ After install the proxy plugin and filling in the rules, execute `pnpm run dev`, Modern.js will automatically enable the proxy server after the development server starts.
7
+
8
+ Specific proxy rules can be set via the [`dev.proxy`](/docs/configure/app/dev/proxy) or the `config/proxy.js` file.
9
+
10
+ ### Use Proxy Dashboard
11
+
12
+ After exec `pnpm run dev` command:
13
+
14
+ ```bash
15
+ App running at:
16
+
17
+ Local: http://localhost:8080/
18
+ Network: http://192.168.0.1:8080/
19
+
20
+ ℹ info Starting the proxy server.....
21
+ ✔ success Proxy Server start on localhost:8899
22
+ ```
23
+
24
+ In the console you can see that the proxy server started successfully.
25
+
26
+ Accessing the `http://localhost:8899` and, you can set the rules through the dashboard.
27
+
28
+ ![debug-proxy-ui](https://lf3-static.bytednsdoc.com/obj/eden-cn/aphqeh7uhohpquloj/modern-js/debug/debug-proxy-ui.png)
@@ -0,0 +1,62 @@
1
+ ---
2
+ title: autoLoadPlugins
3
+ sidebar_position: 11
4
+ ---
5
+
6
+ - Type: `boolean`
7
+ - Default: `false`
8
+
9
+ Used to configure whether Modern.js enables auto-registration of plugins.
10
+
11
+ ### Manual Registration Plugin
12
+
13
+ By default, installing the plugin requires you to register the plugin manually in the `modern.config.ts`.
14
+
15
+ ```ts title="modern.config.ts"
16
+ import AppToolsPlugin, { defineConfig } from '@modern-js/app-tools';
17
+ import I18nPlugin from '@modern-js/plugin-i18n';
18
+
19
+ default export defineConfig({
20
+ plugins: [AppToolsPlugin(), I18nPlugin()]
21
+ })
22
+
23
+ ```
24
+
25
+ ### Auto Registration plugin
26
+
27
+ In addition to means registration, Modern.js also provides a way to automatically register plugins: set the `autoLoadPlugin` configuration item to `true`.
28
+
29
+ ```ts title="modern.config.ts"
30
+ import { defineConfig } from '@modern-js/app-tools';
31
+
32
+ default export defineConfig({
33
+ autoLoadPlugins: true
34
+ })
35
+ ```
36
+
37
+ Modern.js will help you automatically register the plugin by following these steps
38
+
39
+ 1. Modern.js maintains an official list of plugins internally.
40
+
41
+ ```js
42
+ const InternalPlugins = ['@modern-js/app-tools', '@modern-js/plugin-i18n', ...];
43
+ ```
44
+
45
+ 2. Modern.js will read your `package.json` and collect the dependency information.
46
+
47
+ ```json title="package.json"
48
+ "dependencies": {
49
+ "@modern-js/plugin-i18n": "x.x.x"
50
+ ...
51
+ },
52
+ "devDependencies": {
53
+ "@modern-js/app-tools": "x.x.x"
54
+ ...
55
+ }
56
+ ```
57
+
58
+ 3. Modern.js observes that when you install dependencies such as `@modern-js/plugin-i18n` and `@modern-js/app-tools`, automatic plugin registration will be imported.
59
+
60
+ You can notice that this approach is relatively black-box and you are not even aware of the process of loading the plugin. We want to expose more details to the developer and be able to let the developer control the process.
61
+
62
+ **Therefore we recommend you to register the plugin manually.**
@@ -4,77 +4,7 @@ sidebar_label: proxy
4
4
 
5
5
  # dev.proxy
6
6
 
7
- * Type: `string | Object`
8
- * Default: `null`
9
7
 
10
- When this option is configured, the development environment will start a global proxy, similar to [Fiddler](https://www.telerik.com/fiddler), [Charles](https://www.charlesproxy.com/) and other web proxy debugging tools, which can be used to view, modify HTTP/HTTPS requests, responses, and can also be used as a proxy server.
11
-
12
-
13
- :::tip 提示
14
- Using this option requires advance installation `@modern-js/plugin-proxy`。
15
- :::
16
-
17
- ### Object
18
-
19
- Using this option requires that the value of `Object` be installed in advance, the `key` of the object corresponds to the matching `pattern`, and the `value` of the object corresponds to the matching `target`.
20
-
21
- Example:
22
-
23
- ```typescript title="modern.config.ts"
24
- export default defineConfig({
25
- dev: {
26
- proxy: {
27
- 'https://www.baidu.com': 'https://google.com.hk',
28
- //可以通过 file 协议直接返回静态文件。
29
- 'https://example.com/api': 'file://./data.json',
30
- }
31
- }
32
- });
33
- ```
34
-
35
- ### String
36
-
37
- When the value is `string`, it can be used to specify a separate proxy file, for example:
38
-
39
-
40
- ```typescript title="modern.config.ts"
41
- export default defineConfig({
42
- dev: {
43
- proxy: './proxy.js',
44
- },
45
- });
46
- ```
47
-
48
- ```js title="proxy.js"
49
- module.exports = {
50
- name: 'my-app',
51
- rules: `
52
- ^example.com:8080/api/*** http://localhost:3001/api/$
53
- `,
54
- };
55
- ```
56
-
57
- :::info
58
- Modern.js global proxy implementation is based on [whistle](https://wproxy.org/whistle/), for more matching patterns, please refer to: [Matching Patterns](https://wproxy.org/whistle/pattern.html)
59
- :::
60
-
61
- Execute `dev`, when the prompt is as follows, the proxy server starts successfully:
62
-
63
- ```bash
64
- App running at:
65
-
66
- Local: http://localhost:8080/
67
- Network: http://192.168.0.1:8080/
68
-
69
- ℹ info Starting the proxy server.....
70
- ✔ success Proxy Server start on localhost:8899
71
- ```
72
-
73
- Access the `localhost:8899` to view the Network and configure proxy rules on the UI interface:
74
-
75
- ![proxy UI](https://lf3-static.bytednsdoc.com/obj/eden-cn/aphqeh7uhohpquloj/modern-js/docs/dev-proxy.png)
76
-
77
- :::caution Caution
78
- The https agent automatically installs the certificate to obtain root privileges. Please enter the password as prompted. ** The password is only used when the certificate is trusted and will not be leaked or used for other links **.
79
- :::
8
+ import GlobalProxyConfig from '@site-docs-en/components/global-proxy-config.md'
80
9
 
10
+ <GlobalProxyConfig />
@@ -2,18 +2,33 @@
2
2
  sidebar_label: router
3
3
  ---
4
4
 
5
+ import RouterLegacyTip from '@site-docs/components/router-legacy-tip.md'
6
+
7
+ <RouterLegacyTip />
8
+
5
9
  # runtime.router
6
10
 
7
11
  * Type: `boolean | Object`
8
12
  * Default: `false`。
9
13
 
10
- When `router` is enabled, routing management using conventional routes provided by Modern.js default is supported.
14
+ When `router` is enabled, routing management of conventional routes provided by Modern.js is supported. Based on [React Router 6](https://reactrouter.com/).
11
15
 
12
16
  ## Configuration
13
17
 
18
+ ### basename
19
+
20
+ * Type: `string`
21
+ * Default: ``
22
+
23
+ The basename of the app for situations where you can't deploy to the root of the domain, but a sub directory.
24
+
14
25
  ### supportHtml5History
15
26
 
16
27
  * Type: `Boolean`
17
28
  * Default: `true`
18
29
 
19
- If the value of `supportHtml5History` is `true`, the project will use `BrowserRouter`, otherwise `HashRouter`.
30
+ If the value of `supportHtml5History` is `true`, `BrowserRouter` would be used, otherwise `HashRouter` would be used. `BrowserRouter` is recommended.
31
+
32
+ :::warning
33
+ When SSR is enabled, `supportHtml5History` is not supported.
34
+ :::
@@ -62,7 +62,6 @@ When the value is `Object`, the following properties can be configured:
62
62
 
63
63
  * `entry`:`string`,entry file path。
64
64
  * `disableMount`:`boolean = false`,turn off Modern.js generate entry code。
65
- * `enableFileSystemRoutes`:`boolean = false`,[Use Conventional Routing](/docs/apis/app/hooks/src/pages)。
66
65
 
67
66
  ```ts title="modern.config.ts"
68
67
  import { defineConfig } from '@modern-js/app-tools';
@@ -78,7 +77,6 @@ export default defineConfig({
78
77
  entry_spa: {
79
78
  // The entry path of a conventional route must be set to a directory
80
79
  entry: './src/about',
81
- enableFileSystemRoutes: true,
82
80
  },
83
81
  },
84
82
  },
@@ -4,38 +4,32 @@ title: tools.tailwindcss
4
4
  sidebar_label: tailwindcss
5
5
  ---
6
6
 
7
- * Type: `Object | Function`
8
- * Default: See configuration details below.
7
+ - Type: `Object | Function`
8
+ - Default: See configuration details below.
9
9
 
10
10
  <details>
11
11
  <summary>TailwindCSS configuration details</summary>
12
12
 
13
13
  ```js
14
- const tailwind = {
15
- purge: {
16
- enabled: options.env === 'production',
17
- content: [
18
- './config/html/**/*.html',
19
- './config/html/**/*.ejs',
20
- './config/html/**/*.hbs',
21
- './src/**/*',
22
- ],
23
- layers: ['utilities'],
24
- },
25
- // https://tailwindcss.com/docs/upcoming-changes
26
- future: {
27
- removeDeprecatedGapUtilities: false,
28
- purgeLayersByDefault: true,
29
- defaultLineHeights: false,
30
- standardFontWeights: false,
31
- },
32
- theme: source.designSystem // Use source.design System configuration as Tailwind CSS Theme configuration
33
- }
14
+ const tailwind = {
15
+ content: [
16
+ './config/html/**/*.html',
17
+ './config/html/**/*.ejs',
18
+ './config/html/**/*.hbs',
19
+ './src/**/*.js',
20
+ './src/**/*.jsx',
21
+ './src/**/*.ts',
22
+ './src/**/*.tsx',
23
+ './storybook/**/*',
24
+ ],
25
+ theme: source.designSystem, // Use source.design System configuration as Tailwind CSS Theme configuration
26
+ };
34
27
  ```
35
28
 
36
29
  :::tip Tips
37
30
  More about: <a href="https://tailwindcss.com/docs/configuration" target="_blank">TailwindCSS configuration</a>。
38
31
  :::
32
+
39
33
  </details>
40
34
 
41
35
  When the value is of type `Object`, rhe configuration corresponding to [TailwindCSS](https://tailwindcss.com/docs/configuration) is merged with the default configuration through `Object.assign`.
@@ -0,0 +1,8 @@
1
+ {
2
+ "label": "BFF",
3
+ "position": 1,
4
+ "link": {
5
+ "type": "doc",
6
+ "id": "guides/advanced-features/bff/index"
7
+ }
8
+ }
@@ -0,0 +1,27 @@
1
+ ---
2
+ sidebar_position: 5
3
+ title: Use Proxy
4
+ ---
5
+
6
+ By configuring the BFF proxy, API requests can be forwarded without manual coding
7
+
8
+ :::caution
9
+ Using a BFF proxy ensures that requests can enter the BFF handler. (eg the request path must contain a bff prefix)
10
+ :::
11
+
12
+ Writing the following BFF proxy configuration in the `modern.server-runtime.config.js` file will proxy requests sent to `http://localhost:8080/api/v1/topics` to `https://cnodejs.org/api/v1/topics`.
13
+
14
+ ```js title="modern.server-runtime.config.js"
15
+ import { defineConfig } from '@modern-js/app-tools/server';
16
+ export default defineConfig({
17
+ bff: {
18
+ proxy: {
19
+ '/api/v1/topics': 'https://cnodejs.org',
20
+ },
21
+ },
22
+ };
23
+ ```
24
+
25
+ :::note
26
+ For more detail, see [bff.proxy](/docs/configure/app/bff/proxy)。For more proxy info, see [Proxy](/docs/guides/basic-features/proxy)。
27
+ :::
@@ -0,0 +1,150 @@
1
+ ---
2
+ sidebar_position: 3
3
+ title: Frameworks
4
+ ---
5
+
6
+ Modern.js's BFF supports different runtime frameworks, currently Modern.js's BFF supports two runtime frameworks[Express.js](https://expressjs.com/) 和 [Koa.js](https://koajs.com/).
7
+
8
+ ## Function Writing
9
+
10
+ Under the function writing, only the middleware writing method of various runtime frameworks is different, and other implementations are basically the same. Take Express as an example to introduce how to write a middleware by hand in the `api/_ app.ts` and add permission verification:
11
+
12
+ ```ts
13
+ import { hook } from '@modern-js/runtime/server';
14
+ import { Request, Response, NextFunction } from 'express';
15
+
16
+ export default hook(({ addMiddleware }) => {
17
+ addMiddleware(async (req: Request, res: Response, next: NextFunction) => {
18
+ if (req.url !== '/api/login') {
19
+ const sid = req?.cookies?.sid;
20
+ if (!sid) {
21
+ res.status(400);
22
+ res.json({ code: -1, message: 'need login' });
23
+ } else {
24
+ next();
25
+ }
26
+ } else {
27
+ next();
28
+ }
29
+ });
30
+ });
31
+ ```
32
+
33
+ 然后添加一个普通的 BFF 函数 `/api/hello.ts`:
34
+
35
+ ```ts
36
+ export default async () => {
37
+ return 'Hello Modern.js';
38
+ };
39
+ ```
40
+
41
+ Finally, add the access code of the interface in the front-end `src/App.tsx`, and call it directly in an integrated way:
42
+
43
+ ```ts
44
+ import { useState, useEffect } from 'react';
45
+ import { get as hello } from '@api/hello';
46
+
47
+ export default () => {
48
+ const [text, setText] = useState('');
49
+
50
+ useEffect(() => {
51
+ async function fetchMyApi() {
52
+ const { message } = await hello();
53
+ setText(message);
54
+ }
55
+
56
+ fetchMyApi();
57
+ }, []);
58
+
59
+ return <p>{text}</p>;
60
+ };
61
+ ```
62
+
63
+ Then exec `pnpm run dev` starts the project, and accessing `http://localhost:8080/` will find that the request for'/api/hello 'is blocked:
64
+
65
+ ![Network](https://lf3-static.bytednsdoc.com/obj/eden-cn/aphqeh7uhohpquloj/modern-js/docs/network2.png)
66
+
67
+ Finally, modify the front-end code `src/App.tsx` to call the login interface before accessing `/api/hello`:
68
+
69
+ ```ts
70
+ import { useState, useEffect } from 'react';
71
+ import { get as hello } from '@api/hello';
72
+ import { post as login } from '@api/login';
73
+
74
+ export default () => {
75
+ const [text, setText] = useState('');
76
+
77
+ useEffect(() => {
78
+ async function fetchAfterLogin() {
79
+ const { code } = await login();
80
+ if (code === 0) {
81
+ const { message } = await hello();
82
+ setText(message);
83
+ }
84
+ }
85
+ fetchAfterLogin();
86
+ }, []);
87
+
88
+ return <p>{text}</p>;
89
+ };
90
+ ```
91
+
92
+ Refresh the page and you can see that `/api/hello` was accessed successfully:
93
+
94
+ ![Network](https://lf3-static.bytednsdoc.com/obj/eden-cn/aphqeh7uhohpquloj/modern-js/docs/network3.png)
95
+
96
+ The above code simulates the way to add middleware to the `/api/_app.ts` to achieve an easy login function. Also, other functions can be implemented in this hook file to extend BFF Server.
97
+
98
+ ## Framework Writing
99
+
100
+ Under the framework writing, Modern.js does not collect middleware in the `api/_app.ts`, and the running process is controlled by the plugin itself.
101
+
102
+ ### Express
103
+
104
+ The framework writing of Express supports defining the startup logic of API Server in `api/app.[tj]s`. performing the initialization work of the application, adding global middleware, declaring routes, and even extending the original framework.
105
+
106
+ The route defined by the BFF function will be registered after the route defined by the `app.ts` file, so here you can also intercept the route defined by the BFF function, preprocess or respond in advance.
107
+
108
+ ```ts title="api/app.ts"
109
+ import express from "express";
110
+
111
+ const app = express();
112
+
113
+ app.put("/user", function (req, res) {
114
+ res.send("Got a PUT request at /user");
115
+ });
116
+
117
+ app.use(async (req, res, next) => {
118
+ console.info(`access url: ${req.url}`);
119
+ next();
120
+ });
121
+
122
+ export default app;
123
+ ```
124
+
125
+ ### Koa
126
+
127
+ The Koa framework is written in a similar way to Express. It supports defining the startup logic of API Server in `app.[tj]s`, performing the initialization work of the application, adding global middleware, declaring routes, extending the original framework, etc.
128
+
129
+ The route defined by the BFF function will be registered after the route defined by the `app.ts` file, so here you can also intercept the route defined by the BFF function, preprocess or respond in advance.
130
+
131
+ :::caution
132
+ Use the framework writing, when there is no `app.ts`, Modern.js will add koa-body by default. When there is `app.ts`, if the developer wants to use the BFF function with Body, he needs to ensure that the koa-body middleware has been added.
133
+ :::
134
+
135
+ ```ts title=api/app.ts
136
+ import koa from "koa";
137
+
138
+ const app = new Koa();
139
+
140
+ app.put("/user", function (req, res) {
141
+ res.send("Got a PUT request at /user");
142
+ });
143
+
144
+ app.use(async (ctx, next) => {
145
+ console.info(`access url: ${ctx.url}`);
146
+ await next();
147
+ });
148
+
149
+ export default app;
150
+ ```