Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/plumdog/cdk-10to12
Hack all node10 Lambdas to use node12
https://github.com/plumdog/cdk-10to12
Last synced: about 1 month ago
JSON representation
Hack all node10 Lambdas to use node12
- Host: GitHub
- URL: https://github.com/plumdog/cdk-10to12
- Owner: plumdog
- License: mit
- Created: 2022-02-28T20:55:32.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-28T23:09:31.000Z (almost 3 years ago)
- Last Synced: 2024-11-16T12:15:50.721Z (about 2 months ago)
- Language: TypeScript
- Size: 598 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# cdk-10to12
Hack all node10 Lambdas to use node12.
Note that this is definitely not safe in general. But you may well
find that your code runs fine in node12.```typescript
import { cdk10to12 } from 'cdk-10to12';...
const app = new cdk.App();
// Then attach things to app, like stacks, with constructs and Lambda functions
// Then force all uses of node10 Lambda runtimes to become node12, and
// hope that you don't get any bugs
cdk10to12(app);
```