Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/atul3007/twf_backend
- Owner: Atul3007
- Created: 2024-02-24T05:34:32.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-24T05:54:57.000Z (11 months ago)
- Last Synced: 2024-02-24T06:26:26.187Z (11 months ago)
- Topics: express, javscript, node
- Language: JavaScript
- Homepage: https://nice-teal-fossa-yoke.cyclic.app/
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ?"
}