website icon indicating copy to clipboard operation
website copied to clipboard

Website for napi.rs

Results 20 website issues
Sort by recently updated
recently updated
newest added

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/napi-rs/website). ## Config Migration Needed - [ ]...

I tried either windows and WSL and it cannot use napi : (base) nico@mypc:/mnt/d/$ yarn global add @napi-rs/cli yarn global v1.22.19 [1/4] Resolving packages... [2/4] Fetching packages... [3/4] Linking dependencies......

Hi all, thanks for creating this project! I appreciate the napi-rs auto-installer but I am interested in setting up a napi-rs project manually (I'm weird like that). I'd like to...

👋 Hi, thanks so much for creating this awesome tool to streamline the process of creating and publishing Node.js addon. I am following the https://napi.rs/docs/introduction/simple-package page to use it for...

```rust #[js_function(1)] fn get_native_object(ctx: CallContext) -> Result { let count: i32 = ctx.get::(0)?.try_into()?; let mut this: JsObject = ctx.this_unchecked(); let native: Native = ctx .env .unwrap(&mut this)?; ctx.env.create_int32(native.value + 1)...

I'm trying to use napi-rs at the moment for a project and I'm generally very impressed and grateful for what you have created. Yesterday I had the experience of getting...

The description in the docs about `prepublish` is: `Running some preparation for publishing NAPI-RS packages.` is not helpful. At least there should be a warning that running prepublish command will...

neon gained better N-API support and [removed legacy backend](https://github.com/neon-bindings/neon/pull/881), [`Comparison with neon`](https://napi.rs/docs/more/neon) should be updated to reflect that.

As I stated here: https://github.com/napi-rs/napi-rs/discussions/1321#discussion-4400022 a list of available macro arguments would be great. Or did I miss it? Had to look through the sourcecode to find skip_typescript