Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
cloudformation-cli-typescript-plugin
Advanced tools
We're excited to share our progress with adding new languages to the CloudFormation CLI!
The CloudFormation CLI (cfn) allows you to author your own resource providers that can be used by CloudFormation.
This plugin library helps to provide TypeScript runtime bindings for the execution of your providers by CloudFormation.
If you are using this package to build resource providers for CloudFormation, install the CloudFormation CLI TypeScript Plugin - this will automatically install the CloudFormation CLI! A Python virtual environment is recommended.
Prerequisites
Installation
pip3 install cloudformation-cli-typescript-plugin
Refer to the CloudFormation CLI User Guide for the CloudFormation CLI for usage instructions.
Howto
Example run:
$ cfn init
Initializing new project
What's the name of your resource type?
(Organization::Service::Resource)
>> Foo::Bar::Baz
Select a language for code generation:
[1] java
[2] typescript
(enter an integer):
>> 2
Use docker for platform-independent packaging (Y/n)?
This is highly recommended unless you are experienced
with cross-platform Typescript packaging.
>> y
Initialized a new project in <>
$ cfn submit --dry-run
$ sam local invoke --event sam-tests/create.json TestEntrypoint
For changes to the plugin, a Python virtual environment is recommended. Check out and install the plugin in editable mode:
python3 -m venv env
source env/bin/activate
pip3 install -e /path/to/cloudformation-cli-typescript-plugin
You may also want to check out the CloudFormation CLI if you wish to make edits to that. In this case, installing them in one operation works well:
pip3 install \
-e /path/to/cloudformation-cli \
-e /path/to/cloudformation-cli-typescript-plugin
That ensures neither is accidentally installed from PyPI.
For changes to the typescript library "@amazon-web-services-cloudformation/cloudformation-cli-typescript-lib" pack up the compiled javascript:
npm run build
npm pack
You can then install this in a cfn resource project using:
npm install ../path/to/cloudformation-cli-typescript-plugin/amazon-web-services-cloudformation-cloudformation-cli-typescript-lib-1.0.1.tgz
Linting and running unit tests is done via pre-commit, and so is performed automatically on commit after being installed (pre-commit install
). The continuous integration also runs these checks. Manual options are available so you don't have to commit:
# run all hooks on all files, mirrors what the CI runs
pre-commit run --all-files
# run unit tests only. can also be used for other hooks, e.g. black, flake8, pylint-local
pre-commit run pytest-local
This library is licensed under the Apache 2.0 License.
FAQs
Typescript language support for the CloudFormation CLI
We found that cloudformation-cli-typescript-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.