From a9c44372e1cb4f353a548eb4ed41404391b2936b Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 13 Feb 2019 23:44:14 -0800 Subject: [PATCH] doc: consolidate N-API material in Collaborator Guide Consolidate the N-API material in the Collaborator Guide to be succinct and direct. PR-URL: https://github.com/nodejs/node/pull/26094 Reviewed-By: James M Snell Reviewed-By: Bryan English --- COLLABORATOR_GUIDE.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/COLLABORATOR_GUIDE.md b/COLLABORATOR_GUIDE.md index aa1406a990b91f..726cc4bd65f4c3 100644 --- a/COLLABORATOR_GUIDE.md +++ b/COLLABORATOR_GUIDE.md @@ -312,15 +312,10 @@ For pull requests introducing new core modules: ### Additions to N-API -N-API provides an ABI-stable API guaranteed for future Node.js versions. -Existing N-API APIs cannot change or disappear, even in semver-major releases. -Thus, N-API additions call for unusual care and scrutiny. - -This -[guide](https://github.com/nodejs/node/blob/master/doc/guides/adding-new-napi-api.md) -outlines the requirements and principles that we should follow when -approving and landing new N-API APIs (any additions to `node_api.h` and -`node_api_types.h`). +N-API provides an ABI-stable API guaranteed for future Node.js versions. N-API +additions call for unusual care and scrutiny. If a change adds to `node_api.h` +or `node_api_types.h`, consult [the relevant +guide](https://github.com/nodejs/node/blob/master/doc/guides/adding-new-napi-api.md). ### Deprecations