GoogleContainerTools / container-debug-support

Language-runtime support files for in-container debugging
Apache License 2.0
93 stars 25 forks source link

`node` wrapper should have a list of acceptable entrypoints from node_modules #45

Closed briandealwis closed 4 years ago

briandealwis commented 4 years ago

Next.JS apps seem to run via a binary in node_modules. For example, next start -p 8080, which is resolved to node ./node_modules/.bin/next dev -p 8080.

Currently the nodejs/wrapper blocks all applications from node_modules, but perhaps it should instead maintain a configurable block-list with nodemon.

briandealwis commented 4 years ago

@vincentjocodes do you know other next-like launcher binaries that should be included?

vjocw commented 4 years ago

@briandealwis Hi Brian, I do not know of any other next-like binaries at this moment.