https://github.com/fantasyui-com/cowpea
Find synonyms that rhyme, a tool for poets.
https://github.com/fantasyui-com/cowpea
Last synced: 5 days ago
JSON representation
Find synonyms that rhyme, a tool for poets.
- Host: GitHub
- URL: https://github.com/fantasyui-com/cowpea
- Owner: fantasyui-com
- License: gpl-3.0
- Created: 2020-05-10T23:51:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-06-01T17:16:17.000Z (about 1 year ago)
- Last Synced: 2025-09-18T04:53:17.046Z (9 months ago)
- Language: JavaScript
- Size: 130 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cowpea
Find synonyms that rhyme, a tool for poets.
## Installation
```sh
npm i cowpea;
```
## Usage
```JavaScript
import cowpea from 'cowpea';
await cowpea.find('frozen', 'aged');
```
```JSON
[
{
"word": [
"frozen",
"aged"
],
"swap": [
"cold",
"old"
],
"description": "frozen/aged: Instead of frozen use cold, instead of aged use old. Then rhyme cold with old."
}
]
```