1.0.5 • Published 7 months ago

keywordify v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

keywordify

This is a simple Node.js plugin that generates all possible combinations of keywords from multiple arrays.

Installation

To install the plugin, run the following command:

npm install keywordify

Usage

const { generateKeywords } = require('my-keyword-generator');

const keywords = generateKeywords(
  ["Shop", "Website", "App"],
  ["Programmer", "Development"],
  ["City ABC", "City DEF"],
  ["My Website Name"]
);

/**
 * keywords contains
 * 
 * "Shop Programmer City ABC My Website Name"
 * ... 
 * "App Development City DEF My Website Name"
 * ...
 */
1.0.5

7 months ago

1.0.4

7 months ago

1.0.0

7 months ago