From 7c0256e4f5b3f8c48fa61308d59e53decd58cd94 Mon Sep 17 00:00:00 2001 From: "Wu, Zhenyu" Date: Tue, 14 Jan 2025 00:16:51 +0800 Subject: [PATCH] doc: fix invalid URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e46f501..601754b8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Implementations of examples are named either after Node.js versions (`node_0.10` - [`nan`](https://github.com/nodejs/nan): C++-based abstraction between Node and direct V8 APIs. - [`Node-API`](https://nodejs.org/api/n-api.html): C-based API guaranteeing [ABI stability](https://nodejs.org/en/docs/guides/abi-stability/) across different node versions as well as JavaScript engines. (Node-API was previously known as N-API.) - [`node-addon-api`](https://github.com/nodejs/node-addon-api): header-only C++ wrapper classes which simplify the use of the C-based Node-API. -- [`node-addon-api-addon-class`](https://github.com/nodejs/node-addon-api/tree/main/doc/addon.md): Similar to `node-addon-api`, but deriving from the `Napi::Addon` class. [1_hello_world](./1_hello_world) provides an example. +- [`node-addon-api-addon-class`](https://github.com/nodejs/node-addon-api/tree/main/doc/addon.md): Similar to `node-addon-api`, but deriving from the `Napi::Addon` class. [1_hello_world](./src/1-getting-started/1_hello_world) provides an example. Implementations against unsupported versions of Node.js are provided for completeness and historical context. They are not maintained.