Menu
Open source

Modules

Importing modules

It’s common to import modules, or parts of modules, to use in your test scripts. In k6, you can import different kinds of modules:

Built-in modules

k6 provides many built-in modules for core functionalities. For example, the http client make requests against the system under test. For the full list of built-in modules, refer to the API documentation.

JavaScript
import http from 'k6/http';

Local modules

These modules are stored on the local filesystem, and accessed either through relative or absolute filesystem paths.

k6 adopts a browser-like module resolution and doesn’t support Node.js module resolution. File names for imports must be fully specified, such as ./helpers.js.

JavaScript
//my-test.js
import { someHelper } from './helpers.js';

export default function () {
  someHelper();
}
JavaScript
//helpers.js
export function someHelper() {
  // ...
}

Remote modules

These modules are accessed over HTTP(S), from a public source like GitHub, any CDN, or from any publicly accessible web server. The imported modules are downloaded and executed at runtime, making it extremely important to make sure you trust the code before including it in a test script.

For example, jslib is a set of k6 JavaScript libraries available as remote HTTPS modules. They can be downloaded and imported as local modules or directly imported as remote modules.

JavaScript
import { randomItem } from 'https://jslib.k6.io/k6-utils/1.2.0/index.js';

export default function () {
  randomItem();
}

You can also build your custom Javascript libraries and distribute them via a public web hosting. For reference, k6-jslib-aws and k6-rollup-example host their modules as GitHub release assets.

Extension modules

Like the k6 APIs, you can build custom modules in Go code and expose them as JavaScript modules. These custom Go-to-JS modules are known as k6 extensions.

Below is an example that imports the k6/x/kubernetes module from the xk6-kubernetes extension.

JavaScript
import { Kubernetes } from 'k6/x/kubernetes';

const podSpec = {
  apiVersion: 'v1',
  kind: 'Pod',
  metadata: { name: 'busybox', namespace: 'testns' },
  spec: {
    containers: [
      {
        name: 'busybox',
        image: 'busybox',
        command: ['sh', '-c', 'sleep 30'],
      },
    ],
  },
};
export default function () {
  const kubernetes = new Kubernetes();
  kubernetes.create(podSpec);
  const pods = kubernetes.list('Pod', 'testns');
  pods.map(function (pod) {
    console.log(pod.metadata.name);
  });
}

How do k6 extensions (Go-to-JS modules) work? For enhanced performance, the k6 engine is written in Go and embeds a JavaScript VM (goja) to execute JavaScript test code. That allows you to build your modules in Go code and import them as JavaScript as usual.

To learn more about using or creating k6 extensions, refer to the Extension documentation.

Sharing JavaScript modules

As mentioned previously, users can import custom JavaScript libraries by loading either local or remote modules. Because of that, we have two options to import JavaScript modules, along with various methods to distribute them.

Note

The following options for distributing and sharing JavaScript libraries are available for both custom and other public libraries.

As remote modules

You can host your modules in a public webserver like GitHub and any CDN and be imported remotely.

JavaScript
// As GitHub release assets
import {
  WorkloadConfig,
  sayHello,
} from 'https://github.com/grafana/k6-rollup-example/releases/download/v0.0.2/index.js';

// or hosted in a CDN
import { randomIntBetween, randomItem } from 'https://jslib.k6.io/k6-utils/1.4.0/index.js';

When the library consists of multiple files and modules, you may want to bundle these modules to create public releases. Here are some examples for reference:

Be aware that k6 automatically executes remote modules, making it crucial to trust the source code of these remote modules. There is a risk of altering the remote modules with certain hosting mechanisms. To mitigate this security risk, some users prefer to download and import the modules locally to ensure full control of the source code.

As local modules

In this example, the previous remote modules have been downloaded to the lib folder of the testing project and imported as follows:

JavaScript
import { WorkloadConfig, sayHello } from './libs/test-commons.js';

import { randomIntBetween, randomItem } from './libs/k6-utils.js';

Another option to distribute libraries is to use a package manager tool like npm, which enables version locking and the linking of local libraries. The latter can be useful during development.

Although k6 does not resolve node modules, you can utilize a Bundler to load npm dependencies, as shown in the k6-rollup-example.

Using TypeScript

k6 does not natively support TypeScript. If you wish to write k6 tests in Typescript, you will need a bundler, as demonstrated in the previous examples:

Using modules with Docker

Built-in and remote modules work out of the box when running k6 in a Docker container like the Grafana k6 Docker image.

Local modules

To run k6 with Docker and import a local module, you must make sure to mount the necessary folders from the host into the container, using Docker volumes. Thus, k6 can see all the JS modules it needs to import.

For example, say you have the following structure on your host machine:

  • /home/k6/example/src/index.js
  • /home/k6/example/src/modules/module.js
JavaScript
import { hello_world } from './modules/module.js';

export default function () {
  hello_world();
}
JavaScript
export function hello_world() {
  console.log('Hello world');
}

To run index.js and make the modules available for import we execute the following Docker command with the /home/k6/example/src host folder mounted at /src in the container:

bash
$ docker run --rm -v /home/k6/example/src:/src -i grafana/k6 run /src/index.js

Note that on Windows, you also need to make sure that your drive in question, say C:\, has been marked for sharing in the Docker Desktop settings.

Extension modules

The official Grafana k6 Docker image includes the k6 release binary but lacks additional k6 extensions. Therefore, using the official Docker container to run a k6 test that requires an extension will fail.

To run k6 with extensions in Docker, create a Docker image that includes the k6 binary with any extension you may want to use. Define a Dockerfile with the necessary xk6 build instructions as follows:

bash
FROM grafana/xk6:latest

RUN GCO_ENABLED=0 xk6 build \
    --with github.com/grafana/xk6-kubernetes@latest

ENTRYPOINT ["./k6"]

After building your custom k6 Docker image, you can run k6 with Docker as usual.

Alternatively, you can implement a multistage Dockerfile build such as shown on this Dockerfile example.

Read more

  • JSLib: A collection of k6 JavaScript libraries maintained by Grafana Labs and available as remote modules.
  • Extensions directory: A collection of k6 extensions maintained by Grafana Labs and the community.
  • k6-rollup-example: Example using Rollup and Babel to bundle a common library and testing suite.
  • k6-template-es6: Template using Webpack and Babel to bundle k6 tests into CommonJS modules and polyfill ES+ features.
  • k6-template-typescript: Template using Webpack and Babel to use TypeScript in your k6 scripts.
  • JavaScript Compatibility Mode: An option to change the ECMAScript version supported by k6.