I need to send requests using k6 from node js script
I have already tried this:
import http from "k6/http";
and this:
var http = require('k6/http')
but it didn't work out
UPD
I want to use k6 some like this: node js script:
var http = require('k6/http');
var fs = require('fs');
http.get("http://test.loadimpact.com/");