https://github.com/skrevolve/aws-sdk-services-nodejs
aws sdk service examples for nodejs
https://github.com/skrevolve/aws-sdk-services-nodejs
aws-sdk nodejs typescript
Last synced: 3 months ago
JSON representation
aws sdk service examples for nodejs
- Host: GitHub
- URL: https://github.com/skrevolve/aws-sdk-services-nodejs
- Owner: skrevolve
- Created: 2023-01-25T08:24:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T08:36:03.000Z (over 3 years ago)
- Last Synced: 2025-10-09T09:39:38.942Z (10 months ago)
- Topics: aws-sdk, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aws-sdk-services-nodejs
### run examples
>
npm run mail_template
>
npm run mail
>
npm run multer_s3
### typescript initial settings
- npm install typescript -g
- tsc --init
- tsconfig.json
>
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "out",
"sourceMap": true,
"esModuleInterop": true
}
}
- npm install -D @types/node
- npm install -D typescript
- Set the debug environment by pressing f5
>
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/main.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/out/**/*.js"]
}
]
}
- Before running debug, you need to build tsc corresponding to preLaunchTask first, so press F1, click Tasks.configureDefaultBuildTask, and then tsc build
>
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": ["$tsc"],
"group": {
"kind": "build",
"isDefault": true
},
"label": "tsc: build - tsconfig.json"
}
]
}