jslib.k6.io, hosted utility libs for k6 scripts.
To make life a little easier during development make sure that the following are installed:
- node >= 11.2.0
- yarn >= 1.13.0
- Create a new branch from master.
- Create a new lib dir
/lib/{lib_name}
- Create a new version dir
/lib/{lib_name}/{desired_version}/
- Add an entry file
/lib/{lib_name}/{desired_version}/index.js
- Add the lib to
supported.json
(see example below):
{
"{lib_name}": ["{desired_version}"]
}
// Example result
{
"awesome-lib": ["2.0.3"]
}
- Add test case in
/tests/basic.js
to make sure that the added lib is importable and runnable by k6. - Update the homepage by running
yarn run generate-homepage
. - Verify that new homepage
/lib/index.html
is legit (Quickly done by runningyarn run verify-homepage
). - Create a PR, get approved etc..
- Merge master. (This will push the updates to S3).
- Browse to https://jslib.k6.io/{lib_name}/{desired_version}/index.js
Running yarn run bundle $pkgName@pkgVersion
will try to run webpack bundling on the file located at /lib/$pkgName/$pkgBundle/index.src.js
.
If all goes well you'll get a bundle file index.js
alongside the "src file".
If there is already a file named index.js
at the given path, you will be asked to override or exit.
When running this command there will be an option to run babel transpile on the bundle as well.
# Example
yarn run bundle [email protected]
- Create a new branch from master.
- Create a new "version dir" in
/lib/{lib_name}/{desired_version}/
- Add entry file for version
/lib/{lib_name}/{desired_version}/index.js
- Add the version to
supported.json
like:
{
"my-lib": [
"1.0.2",
// Use semantic versioning
"{desired_version}"
]
}
// Example result
{
"my-lib": [
"1.0.2",
"2.0.3"
]
}
- Add test case in
/tests/basic.js
to make sure that the ported lib is importable and runnable by k6. - Update the homepage by running
yarn run generate-homepage
. - Verify that new homepage
/lib/index.html
is legit (Quickly done by runningyarn run verify-homepage
). - Create a PR, get approved etc..
- Merge master. (This will push the updates to S3).
- Browse to https://jslib.k6.io/{lib_name}/{desired_version}/index.js
The homepage of https://jslib.k6.io live in the /static
dir.
The final index.html
page gets generated by running yarn run generate-homepage
.
Useful dev commands:
# Listen to file changes, restart devserver and serve index.html
yarn run develop-homepage
# Quickly serve index.html
yarn run verify-homepage
# Generate index.html
yarn run generate-homepage
The outcome of this might vary depeding on the quality of the desired node_module you want to add.
The following command will try to:
- Install the desired {package_name}
- Copy the module to
/lib
- Update the homepage
/lib/index.html
yarn run add-pkg {package_name}
Once run successfully, make sure that you do the following:
- Add test case in
/tests/basic.js
to make sure that the ported lib is importable and runnable by k6. - Verify that new homepage
/lib/index.html
is legit.
Some of the JS packages in /lib/
can be libraries that exist on NPM today.
To add a specific or the latest version of a package that exists on npm the following steps will help you with that.
yarn upgrade {my_package}@version
(for specific version)yarn upgrade {my_package} --latest
(for the latest).yarn run copy-libs
If all went well the following should have happened:
- New version dir and entry file created
/lib/{my_package}/{new_version}/index.js
. - New version entry added to
support.json
(see example below)
{
"my_package": [
"1.0.2", // Previous version
"2.0.0" // New version added by copy-libs command.
]
}
If not then you will have to manually create the new version like described here.
Once a new version dir has been created and added to supported.json
it is time to:
- Add test case in
/tests/basic.js
to make sure that the added version is importable and runnable by k6. - Update the homepage by running
yarn run generate-homepage
. - Verify that new homepage
/lib/index.html
is legit (Quickly done by runningyarn run verify-homepage
). - Create a PR, get approved etc..
- Merge master. (This will push the updates to S3).
- Browse to https://jslib.k6.io/{lib_name}/{desired_version}/index.js