2.5 KiB
A work-in-progress Firefish backend written in Rust
Minimum supported Rust version (MSRV): 1.74
Auto-generated documentation is at https://docs.firefish.dev/backend_rs
How to write the code
Currently, there is no entrypoint in this project, and all functions are executed via Node-API.
You need to apply the [macros::export
] proc macro to export a function to the Node.js backend:
#[macros::export]
pub fn to_be_exported(value: &str) -> i32 {
// You can also call other functions that are not exported
do_something();
42
}
fn do_something() {
do_other_thing();
}
this code will be translated into this TypeScript code:
export declare function toBeExported(value: string): number {
/* executes the compiled Rust function */
}
You can also export async
functions:
#[macros::export]
pub async fn async_function() -> i32 {
some_async_task().await
}
export declare function asyncFunction(): Promise<number> {
/* executes the compiled Rust function */
}
You need to specify object
attribute to export struct
s:
#[macros::export(object)]
pub struct Thing {
pub field_one: String,
pub field_two: Option<String>,
}
export interface Thing {
fieldOne: string
fieldTwo: string | null
}
Update auto-generated files
These files are auto-generated and are not intended for manual editing:
packages/backend-rs/index.js
packages/backend-rs/index.d.ts
packages/backend-rs/src/model/entity/*
Prerequisites
dev/config.env
(seedev/config.example.env
for reference)- PostgreSQL database listening on port
25432
- Dev dependencies
Update database entity
Run the following command in the repository root directory
make entities
Update index.js
and index.d.ts
Run the following command in the repository root directory
make napi
Unit tests
It is highly encouraged that you write unit tests and test the code yourself (there is no integration test at this point).
Prerequisites
dev/config.env
(seedev/config.example.env
for reference)- Firefish config file (
.config/default.yml
) - Dev dependency
Run unit tests
Run the following command in the repository root directory
pnpm run test:rs