https://github.com/lk-code/keywordify
a seo keyword generator
https://github.com/lk-code/keywordify
Last synced: 5 months ago
JSON representation
a seo keyword generator
- Host: GitHub
- URL: https://github.com/lk-code/keywordify
- Owner: lk-code
- License: mit
- Created: 2024-12-17T17:47:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-17T21:41:25.000Z (over 1 year ago)
- Last Synced: 2025-09-14T05:29:17.005Z (9 months ago)
- Language: JavaScript
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```javascript
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"
* ...
*/
```