Paraphrasing Tool

FREEMIUM
Por Healthy Tech | Actualizada 4 days ago | Text Analysis
Popularidad

9.5 / 10

Latencia

453ms

Nivel de servicio

100%

Health Check

N/A

Volver a todos los tutoriales (1)

Create your own Paraphrasing Tool with React - Github link included

Prerequisites

  1. Node.js installed locally on your machine. You can get it here.
  2. Ability to follow the simple instructions that open and run the project locally.

Install

Head over to my GitHub here and download (Clone if you’re techie) the repository onto your local machine. Once you’ve done that navigate into the project and install the dependencies.

git clone https://github.com/HealthyTechGuy/paraphrasingTool.git
cd paraphrasing-tool
npm i

I built this simple React app in a few hours, the actual text spinning magic happens behind the scenes via an API call to a service on RapidAPI which I also developed.

Get your API key

I have set up this application to use the Paraphrasing Tool on Rapid API, however, you could change this to use any paraphrasing API that you wish with some minor code changes.
Head over to the RapidAPI Paraphrasing Tool here and subscribe to a plan to get the API key which you’ll need for the next step.

In the config.json file, you’ll see the following key-value pair.

"paraphrasingToolRapidAPIKey": "YOUR-KEY-HERE"

You guessed it! replace “YOUR-KEY-HERE” with the API key you just got from RapidAPI.

Run the project

Ensuring you’re inside the project directory, run
npm start
you can then navigate to “http://localhost:3000” and you should be able to see the UI as shown below.