Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
04fc7e6
doc: add maintaining info for shared libary option
mhdawson Mar 29, 2022
d868979
fix typo
mhdawson Mar 29, 2022
31a712d
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
00f1f2b
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
e3d1085
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
e066018
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
2dea68b
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
b81291c
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
8f5935e
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
a5b3e46
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
c721355
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
b3c5a0a
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 30, 2022
4ce8d4a
squash: address comments
mhdawson Mar 30, 2022
6b136cd
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Mar 31, 2022
487a5c2
squash: address comments
mhdawson Mar 31, 2022
3f0212b
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Apr 7, 2022
5ca69c2
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Apr 7, 2022
1646f22
squash: address comments
mhdawson Apr 7, 2022
2136f11
squash: satisfy the linter
mhdawson Apr 7, 2022
b165ebd
Update doc/contributing/maintaining-shared-library-support.md
mhdawson Apr 21, 2022
86b1571
squash: address comments
mhdawson Apr 21, 2022
1912c7c
squash: address comments
mhdawson Apr 21, 2022
fa78950
Update doc/contributing/maintaining-shared-library-support.md
mhdawson May 10, 2022
7703b6e
squash: update to reflect current approach
mhdawson May 10, 2022
0a42b27
squash: address linter issues
mhdawson May 10, 2022
a89bafa
squash: stand on head to make linter happy
mhdawson May 10, 2022
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
Prev Previous commit
Next Next commit
squash: address comments
  • Loading branch information
mhdawson authored Mar 30, 2022
commit 4ce8d4a85a9cad76c54869d5203f5f2d5beea74e
4 changes: 3 additions & 1 deletion doc/contributing/maintaining-shared-library-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

Node.js unofficially supports a build option where Node.js is built as
a shared library (node.dll/libnode.so). The shared library provides
an easy way to way to embed Node.js into other applications and to
an easy way to embed Node.js into other applications and to
Comment thread
mhdawson marked this conversation as resolved.
Outdated
have multiple applications use a single copy of Node.js instead
of having to bundle in the full Node.js footprint into each application.
For workloads that require multiple node instances this can result
Comment thread
mhdawson marked this conversation as resolved.
Outdated
in a significant footprint savings.

Comment thread
mhdawson marked this conversation as resolved.
Outdated
This doc provides an outline of the approach and things to look
Comment thread
mhdawson marked this conversation as resolved.
Outdated
out for when maintaining the shared library support.
Expand Down