For nodejs what are best design practices for native modules which share dependencies?
- by Mark Essel
Hypothetical situation, I have 3 node modules all native, A, B, and C.
A is a utilities module which exposes several functions to javascript through the node interface, in addition it declares/defines a rich set of native structures and functions
B is a module which is dependent on data structures and source in A, it exposes some functions…