npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gherkiner-cli

v0.0.5

Published

Awesome formatter for Gherkin features as command line interface

Downloads

6

Readme

Gherkiner

This extension makes a simple format of Gherkin feature files by modifying the line indent depending on the words starting the line

Value added

The value added by this extension compared with others is the possibility of including padding for lines beginning with custom strings. This way you are not limitted to Gherkin standard nomenclature or to the used language in the feature. For example, suppose that your features definition include some actions in a section called Before Action. You can set a dedicated padding for the lines beginning with Before Action. Besides, the default padding could be used to define the indent of the rest of lines in that section.

  • Lines starting with 'Before Action' having a padding of 2 spaces
  • Default padding set to 4 spaces

produces something like

  Before Action:
    Anything you need here
    will have a padding of 4 spaces
    as indicated in the default padding

Features

  • Define the padding to apply to a certain line depending on the words starting such line. For example, all lines starting with 'Given' have a padding of 4. Lines starting with 'Scenario Outline' have a padding of 2. There is not an specific set of words or phrases to consider for the padding with default values, so you need to define each one you want the extension to consider

  • Define a padding to apply for the lines having tables

  • Default padding. You can define a common padding for all the not empty lines that have not an specific padding

  • Table formatting. Tables in the document are autoformatted

  • Tags take the padding of the section they apply to. For example, tags for scenarios take the same padding that the one defined for the lines stating with 'Scenario' word

  • Padding symbol. Set space or tab as the symbol to pad the lines

  • Format on save. There is a contextual menu entry to apply the format to the current open features file, but you can also enable the formatting when saving the document

  • Normalizes lines with reserved words to have exactly one line after the reserved word

Usage

gherkiner -s <settings.json> <path_to_gherkin.feature>

where settings.json is a file whose content determinates how to format the file at path_to_gherkin.feature. Details of such configuration are described in the next section

Settings

Define a json file containing the settings to format in the desired way the gherkin feature files. You can find an example into the examples folder of the npm package.

| Setting | Description | Type |Default value | |---------|-------------|------|---------------| | consecutiveBlankLinesToOne | indicates whether consecutive blank lines in the document should be trimmed to just one line | boolean | false | | fixtureLineBreak | indicates whether feature should leave every @fixture tag in its own line | boolean | false | | padding.symbol | the symbol ('tab' or 'space') to use for padding the lines | string | space | | padding.default | how many symbols to pad for all the regular lines whose padding has not been explicitly set | integer | (not set) | | padding.table | the padding to apply to lines belonging to tables | integer | (not set) | | gherkiner.paddings | list of specific prefixes and their paddings to apply | array of {string: int} elements | [ ] |

{
  "padding": {
    "symbol": "space",
    "default": 4,
    "table": 10
  },
  "fixtureLineBreak": true,
  "consecutiveBlankLinesToOne": false,
  "paddings": [
    {
      "keyword": "Feature",
      "padding": 0
    },
    {
      "keyword": "Scenario Outline",
      "padding": 2
    },
    {
      "keyword": "Scenario",
      "padding": 2
    },
    {
      "keyword": "Given",
      "padding": 4
    },
    {
      "keyword": "When",
      "padding": 5
    },
    {
      "keyword": "Then",
      "padding": 5
    },
    {
      "keyword": "And",
      "padding": 6
    },
    {
      "keyword": "But",
      "padding": 6
    },
    {
      "keyword": "Backgroud",
      "padding": 2
    },
    {
      "keyword": "Action",
      "padding": 2
    },
    {
      "keyword": "Examples:",
      "padding": 4
    },
    {
      "keyword": "#",
      "padding": 0
    }
  ]
}

Issues

Feel free to file issues here

Disclaimer

This tool is provided as-is. No support is guaranteed

Thank you

If you like this tool, please start it. If not, sorry, but you didn't tell me how to make it well and what's even worse, you didn't contribute to make it well