napi-rs#
https://napi.rs/docs/introduction/getting-started 提供了方便的命令來讓我們基於 Rust 開發 node 的 addon,farm 也是基於 napi-rs 開發的,本小節記錄 napi-rs 搭建過程,並且添加調試命令增強調試體驗。
詳細流程
- 初始化項目 https://napi.rs/docs/introduction/getting-started 根據官網步驟初始化項目目錄
- 使用 pnpm + cargo 將原有項目改造成 monorepo 項目
a. 將原來的 yarn 文件刪除,創建 pnpm-workspakce.yaml 然後執行 pnpm install
b. 將原來的 rust 項目也改造成 monorepo 的形式,具體配置文件如下
# pnpm-workspace.yaml
packages:
- packages/*
- examples/*
- crates/*
<!-- Cargo.toml -->
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
napi = {version = "2.15.0", default-features = false, features = [
"napi4",
"error_anyhow",
"serde-json",
]}
napi-derive = "2.15.0"
- 添加相應的包
cli
├── Cargo.toml
├── build.rs
└── src
└── lib.rs
具體文件內容
# Cargo.toml
[package]
edition = "2021"
name = "farm_cli"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
napi = {workspace = true}
napi-derive = {workspace = true}
[build-dependencies]
napi-build = "2.0.1"
[profile.release]
lto = true
strip = "symbols"
build.rs
use napi_build::setup;
fn main() {
setup()
}
#![deny(clippy::all)]
#[macro_use]
extern crate napi_derive;
#[napi]
pub fn sum(a: i32, b: i32) -> i32 {
a + b
}
- packages 文件目錄
cli
├── binding
│ ├── binding.cjs
│ ├── binding.d.ts
│ └── index.darwin-arm64.node
├── package.json
└── src
└── index.js
如何生成 binding 文件
添加如下的命令
"build:rs:debug": "napi build --platform --cargo-name farm_cli -p farm_cli --cargo-cwd ../../ binding --js binding.cjs --dts binding.d.ts"
index.cjs
const { sum } = require('../binding/binding.cjs')
const total = sum(1,2);
console.log(total)
測試執行,輸出沒有問題
添加調試
.vscode 下面添加
launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"sourceLanguages": ["rust"],
"name": "debug rust",
"program": "node",
"preLaunchTask": "npm: build:debug",
"args": ["--inspect", "${file}"]
}
]
}
tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build:dev",
"group": "build",
"problemMatcher": [],
"label": "npm: build:debug"
}
]
}
調試效果
到此環境搭建完畢
代碼地址 https://github.com/Maidang1/rust-learn-code/commit/51f5d71cdf9c6a3aa691057523e9145a9bde81af