git init
or
sub crappy_async_lwp($host, $path) { | |
my $p = Promise.new; | |
my $v = $p.vow; | |
IO::Socket::Async.connect($host, 80).then(-> $sr { | |
if $sr.status == Kept { | |
my $socket = $sr.result; | |
$socket.send("GET $path\r\n\r\n").then(-> $wr { | |
if $wr.status == Broken { | |
$v.break($wr.cause); | |
$socket.close(); |
#cd to your local openQA webui repository | |
#cd suse.com/github.com/os-autoinst/openQA | |
#If the setup for the development scenario involves sharing /var/lib/openqa, it would be wise to have a shared group openqa, that will have write and execute permissions over said directory, so that geekotest user and the normal development user can share the environment without problems. | |
# chmod -R g+rwx /var/lib/openqa/ | |
# chgrp -R openqa /var/lib/openqa can’t fix | |
#start the local (yours) webui | |
script/openqa gru -m production run & sleep 1; |
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.