Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carrington-115/gcloudapp-translate-backend
Translation backend of an application built with nodejs, express, and google cloud translation API
https://github.com/carrington-115/gcloudapp-translate-backend
expressjs google-cloud google-cloud-translation-api nodejs typescript
Last synced: about 17 hours ago
JSON representation
Translation backend of an application built with nodejs, express, and google cloud translation API
- Host: GitHub
- URL: https://github.com/carrington-115/gcloudapp-translate-backend
- Owner: carrington-115
- Created: 2024-06-23T22:25:23.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-25T06:46:46.000Z (7 months ago)
- Last Synced: 2024-11-10T00:12:27.614Z (about 2 months ago)
- Topics: expressjs, google-cloud, google-cloud-translation-api, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test backend application with Google cloud translation api
## How to install typescript to the project
- Run the following code to install typescript compiling and the types for the node and express
```shell
npm install --save-dev typescript ts-node @types/node @types/express```
- Install the tsconfig.json file with the code below and configure ti
```shell
npx tsc --init
```- To run the typescript code
```shell
npx ts-node src/server.ts// with nodemon add the package.json dev script
"dev": "nodemon --watch src/**/*.ts --exec ts-node src/server.ts"```