With node.js, the cold start problem is caused by how node loads files. For each file it does about 10 IO operations (to resolve the file from the module name), then load, parse and compile the file.
If using any file system that is not super fast, this amounts to long delays.
There are ways to get around that, but those are not available on lambda
If using any file system that is not super fast, this amounts to long delays.
There are ways to get around that, but those are not available on lambda