
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@dev-blinq/cucumber-js
Advanced tools
Cucumber.js with Blinq.io adaptation
We took the regular old Cucumber (A tool for running automated tests) and made improvements that could be helpful when working with data that should be saved or when we want to generate fake data for testing purposes in our Gherkin feature file.
@dev-blinq/cucumber-js is available on npm:
$ npm install @dev-blinq/cucumber-js
Before, we used to write Gherkin feature files like this -
Feature: Github
Scenario Outline: Create a new repository
Given Create a new repository name "<repo>"
Examples:
| repo
| random_repo_name
Now, instead of picking a random name by ourselfs, we could fake data using the faker library and get a random value -
Feature: Github
Scenario Outline: Create a new repository
Given Create a new repository name "<repo>"
Examples:
| repo
| {{string.alpha(10)}}
We could also save our fake data (or any data really) as a variable for future use using the equals (=) sign -
Feature: Github
Scenario Outline: Create a new repository
Given Create a new repository name "<repo>"
Examples:
| repo
| {{repo=string.alpha(10)}}
Scenario Outline: Create a second repository
Given Create a new repository with the same name as before "<repo>"
Examples:
| repo
| {{repo}}
In that example, we saved repo as a variable with a value of some fake data and used it again as the second repo value, both repos will have the same fake value.
See documentation for the Blinq.io app.
FAQs
Cucumber - Blinq.io Cucumber.js with Blinq.io adaptation
The npm package @dev-blinq/cucumber-js receives a total of 3,862 weekly downloads. As such, @dev-blinq/cucumber-js popularity was classified as popular.
We found that @dev-blinq/cucumber-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.