In a Modern.js application, developers can define API files under the api/lambda
directory and export API functions from these files. In the frontend code, these API functions can be directly invoked by importing the file, which initiates the API requests.
This invocation method is called unified invocation, where developers do not need to write glue code for the frontend and backend separately, thereby ensuring type safety across both.
new
command:Currently, it is recommended to create BFF in framework mode. We will remove the BFF type concept in the future.
modern.config.[tj]s
:Functions that allow unified invocation are called BFF Functions. Here is an example of the simplest BFF function. First, create the api/lambda/hello.ts
file:
Then, import and invoke the function directly in src/routes/page.tsx
:
After running the new
command, the Modern.js generator will automatically configure the @api
alias in tsconfig.json
, allowing you to import functions directly using the alias.
The function imported in src/routes/page.tsx
will be automatically converted into an API call, eliminating the need to use an SDK or Web Fetch to call the API.
After running pnpm run dev
, open http://localhost:8080/
and you can see that the page displays the content returned by the BFF function. In the Network tab, you can see a request was made to http://localhost:8080/api/hello
.
In Modern.js, the routing system for BFF functions is implemented based on the file system, which is another form of conventional routing. Each BFF function in the api/lambda
directory is mapped to an API route. Here are some routing conventions.
All routes generated by BFF functions have a common prefix, which defaults to /api
. This can be configured using bff.prefix.
Files named index.[jt]s
will be mapped to the parent directory.
api/lambda/index.ts
-> {prefix}/
api/lambda/user/index.ts
-> {prefix}/user
Nested directories are supported, and files will be automatically parsed into routes in the same way.
api/lambda/hello.ts
-> {prefix}/hello
api/lambda/user/list.ts
-> {prefix}/user/list
Similarly, creating a directory or file with [xxx]
in the name supports dynamic route parameters. The rules for dynamic route function parameters can be found in dynamic-path.
api/lambda/user/[username]/info.ts
-> {prefix}/user/:username/info
api/lambda/user/username/[action].ts
-> {prefix}/user/username/:action
By default, all files under the api/lambda/
directory are parsed as BFF function files, but the following files are ignored:
_
. For example: _utils.ts
._
. For example: _utils/index.ts
, _utils/cp.ts
.foo.test.ts
.hello.d.ts
.node_modules
.Modern.js BFF functions need to follow RESTful API standards for definition. Developers must define BFF functions according to a set of rules.
BFF functions should not only be invoked within the project but also be accessible to other projects via an SDK or Web fetch. Therefore, Modern.js does not define a private protocol for unified invocation but uses standard HTTP methods along with common HTTP request parameters like params
, query
, and body
to define functions.
Modern.js BFF functions' export names determine the HTTP method for the corresponding API, such as get
, post
, etc. For example, to export a GET API:
The following example exports a POST
API:
Modern.js supports 9 HTTP methods: GET
, POST
, PUT
, DELETE
, CONNECT
, TRACE
, PATCH
, OPTIONS
, and HEAD
, which can be used as function export names.
Names are case-insensitive. If the method is GET
, it can be written as get
, Get
, GEt
, or GET
, and the default export, i.e., export default xxx
, will be mapped to Get
.
Modern.js recommends defining BFF functions as async functions, even if there is no asynchronous process in the function, for example:
This is because, during frontend invocation, the BFF function will be automatically converted into an HTTP API call, and HTTP API calls are asynchronous. On the frontend, it is typically used like this:
Therefore, to keep the type definitions consistent with the actual invocation experience, we recommend defining BFF functions as async functions.
Function parameter rules are divided into two parts: dynamic routes in the request path (Dynamic Path
) and request options (RequestOption
).
Dynamic routes will be the first part of the BFF function parameters, with each parameter corresponding to a segment of the dynamic route. For example, the level
and id
parameters will be passed to the function in the following example:
Invoke the function by directly passing in the dynamic parameters:
Parameters following the dynamic path are an object called RequestOption
, which includes the query string and request body. This field is used to define the types for data
and query
.
In a standard function without dynamic routes, RequestOption
can be obtained from the first parameter, for example:
Custom types can also be used here:
When the function file uses dynamic routing, dynamic routes will precede the RequestOption
object parameter.
Pass the corresponding parameters when invoking the function according to its definition:
The standard BFF function writing method may not always meet your needs. We are designing a more powerful BFF function writing method to allow developers to extend BFF functions more conveniently.
Coming soon