Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/atul3007/twf_backend

English to French Converter
https://github.com/atul3007/twf_backend

express javscript node

Last synced: about 1 month ago
JSON representation

English to French Converter

Awesome Lists containing this project

README

        

# English to French Converter - Node.js Backend
This simple Node.js backend application is designed to convert English text to French using a translation service. It provides a straightforward API endpoint for language translation.

## Getting Started
### Prerequisites
* Node.js installed on your machine
* npm (Node Package Manager) installed
## API Endpoint
### Endpoint: /
Method: GET
Response:
{
"Welcome to English to French translator app!!!"
}
### Endpoint: /translate
Method: POST
Request Body:
{
"text": "Hello, how are you?"
}
### Response
{
"translation": "Bonjour, comment ça va ?"
}