interface-forge - v2.5.0
    Preparing search index...

    Class HackerModule

    Module to generate hacker/IT words and phrases.

    There are methods for different parts of speech, such as abbreviation(), adjective(), noun(), verb(), and ingverb(). Alternatively, phrase() creates a longer phrase combining these words.

    Various modules allow for generating other types of words and phrases:

    • faker.word uses general vocabulary rather than hacker-specific terms.
    • faker.lorem uses faux-Latin "lorem ipsum" text.
    • faker.company includes corporate catchphrases and buzzwords.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    faker: Faker

    Methods

    • Returns a random hacker/IT abbreviation.

      Returns string

      faker.hacker.abbreviation() // 'THX'
      

      2.0.1

    • Returns a random hacker/IT adjective.

      Returns string

      faker.hacker.adjective() // 'cross-platform'
      

      2.0.1

    • Returns a random hacker/IT verb for continuous actions (en: ing suffix; e.g. hacking).

      Returns string

      faker.hacker.ingverb() // 'navigating'
      

      2.0.1

    • Returns a random hacker/IT noun.

      Returns string

      faker.hacker.noun() // 'system'
      

      2.0.1

    • Generates a random hacker/IT phrase.

      Returns string

      faker.hacker.phrase()
      // 'If we override the card, we can get to the HDD feed through the back-end HDD sensor!'

      2.0.1

    • Returns a random hacker/IT verb.

      Returns string

      faker.hacker.verb() // 'copy'
      

      2.0.1