https://github.com/victorqribeiro/terms
Get related terms to a word.
https://github.com/victorqribeiro/terms
related-terms related-words search-string systematic-literature-reviews systematic-reviews
Last synced: 23 days ago
JSON representation
Get related terms to a word.
- Host: GitHub
- URL: https://github.com/victorqribeiro/terms
- Owner: victorqribeiro
- License: mit
- Created: 2019-10-03T00:49:39.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-03T00:58:10.000Z (about 6 years ago)
- Last Synced: 2025-05-05T19:54:03.308Z (5 months ago)
- Topics: related-terms, related-words, search-string, systematic-literature-reviews, systematic-reviews
- Language: JavaScript
- Homepage: https://victorribeiro.com/terms
- Size: 7.81 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terms
Get related terms to a word.
Live version [here](https://victorribeiro.com/terms)
## About
I was asked to come up with a Neural Network capable of giving related terms to a word. This is useful when you're doing a [systematic review](https://en.wikipedia.org/wiki/Systematic_review) since related terms can help you build your [search string](https://whatis.techtarget.com/definition/search-string). So, instead of a Neural Network, I came up with this. This script get the related terms from [Wikipedia](https://wikipedia.org). It's kinda silly, but it works.
## How to use it
Insert the script to your project
```javascript```
Since the script will make 3 requests to Wikipedia, you should call it with async (feel free to change the code to use then).
```javascript
const terms = await getRelatedTerms('your_term_here');
```