dimkir
dimkir
As to my understanding the idea behind boolean switch is that, if it is specified amonst the arguments, then it is set to true. Eg. ``` program -dosomething something -skipimport...
Hmm... Maybe discussion under this thread can give you some pointers: https://phabricator.wikimedia.org/T202710 Seems like problem may be related to mismatch of users when executing container...
If I paraphrase your question: > Can chrome extensions be added into electron using nightmare commands at runtime? If I have to guess, my thoughts would be: essentially nightmare probably...
The `/var/runtime/node_modules/lambda-logging/Layout.js:63:45` is actually part of AWS lambda runtime (which AWS Lambda team works on). I wonder whether you encounter this error every time when running nightmare on Node 10?...
Hi kudla! Thank you for the PR! I will check it properly first thing tomorrow morning!
To make it work on Lambda, you have to make sure you wrap your code inside this "boiler plate" template (as described in the README https://github.com/dimkir/nightmare-lambda-tutorial#write-your-lambda-function-source-code) Be sure to read...
### TL;DR; Within your code you are using `require()` function which is meant to include JS-files. Whereas `electronPath` points to binary linux executable (ELF - Executable and Linking Format). If...
It would be helpful if you can post additional details of your problem: - actual code you're using would be helpful - what's the configuration of the lambda function (eg...
I have tried running your code locally (not on lambda). And there's typo: ```javascript modules.export = new Test(); // ^ no need for 's' here module.exports = new Test(); //...
Does everything work when you try running the script locally (on your dev machine)?