Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 440 Bytes

File metadata and controls

9 lines (6 loc) · 440 Bytes

Example CAP Server

Node and local dependencies

In package.json, we declare our library as a local file: dependency. There is a bug in node where such local dependencies cause imports from the local dependency's code to fail, because of the way symlinks are handled. For details see nodejs/node#3402.

To fix this behavior, you need to run node with the option --preserve-symlinks.