Menu
Open source

JavaScript and TypeScript compatibility mode

You can write k6 tests in various ECMAScript versions:

  • ES6+ JavaScript with ES modules (ESM).
  • ES6+ JavaScript with CommonJS modules.

k6 supports both module types and most ES6+ features in all k6 execution modes: local, distributed, and cloud.

Additionally, k6 also has experimental support for esbuild, to transpile TypeScript (TS) code.

Some users prefer to bundle their test code outside k6. For this reason, k6 offers three JavaScript compatibility modes:

When running tests, you can change the mode by using the --compatibility-mode option:

EnvCLICode / Config fileDefault
K6_COMPATIBILITY_MODE--compatibility-modeN/A"extended"

Extended mode

By default, k6 uses the --compatibility-mode=extended mode:

bash
$ k6 run script.js

After v0.53.0 the only difference with base is that global (node’s global variable) is aliased to the value of globalThis.

Experimental enhanced mode

cli
$ k6 run --compatibility-mode=experimental_enhanced script.ts
env
$ K6_COMPATIBILITY_MODE=experimental_enhanced k6 run script.ts

The experimental enhanced mode is similar to the extended mode, but it uses esbuild instead of Babel to transpile TypeScript (TS) code.

TypeScript support is partial as it removes the type information but doesn’t provide type safety.

Base mode

cli
$ k6 run --compatibility-mode=base script.js
env
$ K6_COMPATIBILITY_MODE=base k6 run script.js

After v0.53.0 there isn’t a big reason to use this. Before that it was dropping ESM support for usually improved startup speed.

CommonJS Example

JavaScript
const http = require('k6/http');
const k6 = require('k6');

module.exports.options = {
  vus: 10,
  duration: '30s',
};

module.exports.default = function () {
  http.get('http://test.k6.io');
  k6.sleep(1);
};

⚠️ About require()

Note that require() is a custom k6 implementation of module loading, which doesn’t behave in the same way as the require() call in Node.js. Specifically, it only handles loading of built-in k6 modules, scripts on the local filesystem, and remote scripts over HTTP(S), but it does not support the Node.js module resolution algorithm.

Bundling with Babel outside of k6

The examples below demonstrate the use of Babel with bundlers like Webpack and Rollup:

Read more

  • Running large tests: Optimize k6 for better performance.
  • k6 Modules: Different options to import modules in k6.
  • k6 Archive Command: The k6 archive command bundles all k6 test dependencies into a tar file, which can then be used for execution. It may also reduce the execution startup time.