Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Runtime documentation

- [Node-API](node-api.md) — the standard `napi_*` C ABI for native addons:
building against the prefab package, registering and requiring addons,
threading and finalizer contracts, and the documented divergences from Node
(shared with the iOS runtime).
- [Performance API](performance.md) — WHATWG `performance` (hr-time, user
timing, performance timeline with `PerformanceObserver`), per-isolate time
origins for workers, the native clock hook that future `requestAnimationFrame`
Expand Down
204 changes: 204 additions & 0 deletions docs/node-api.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions test-app/app/src/main/assets/app/mainpage.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ require('./tests/testPrimordials');
require('./tests/testInspect');
// The ns:/node: builtin modules
require('./tests/testNsUtil');
// Node-API addon surface
require('./tests/NapiTests');
require('./tests/NapiCoverageTests');
require("./tests/testConcurrentAccess");

require("./tests/testESModules.mjs");
Loading