Run the following command in root directory of an app in command prompt.
server/ node install
Run the following command in root directory of an app in command prompt.
server/ node server.js
You can see the port number in command prompt after sucessfull run
You can change the settings in server/config/config.js file
POST: http://localhost:8080/createSynonyms
{
"originalWord": "classificationId",
"synonyms": [
"classification.",
"classification",
"classificationNo."
]
}
GET: http://localhost:8080/getSynonyms
PUT: http://localhost:8080/updateSynonyms
{
"originalWord": "classificationId",
"synonyms": [
"classification",
"classificationNo."
]
}