Skip to content

The CloudFormation Provider Development Toolkit TypeScript Plugin allows you to autogenerate TypeScript code based on an input schema.

License

Notifications You must be signed in to change notification settings

chuchocd85/cloudformation-cli-typescript-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEVELOPER PREVIEW (COMMUNITY DRIVEN)

License MIT contributions welcome Project Status: WIP – Initial development

We're excited to share our progress with adding new languages to the CloudFormation CLI!

This plugin is an early preview prepared by the community, and not ready for production use.

AWS CloudFormation Resource Provider TypeScript Plugin

GitHub Workflow Status Codecov GitHub release Node.js version

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.

Usage

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

  • Python version 3.6 or above
  • SAM CLI
  • Your choice of TypeScript IDE

Installation

Because this is a developer preview, you still need to install the plugin from GitHub using pip.

pip3 install git+https://github.com/eduardomourar/cloudformation-cli-typescript-plugin.git#egg=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

Development

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.

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

License

This library is licensed under the MIT License.

About

The CloudFormation Provider Development Toolkit TypeScript Plugin allows you to autogenerate TypeScript code based on an input schema.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 83.0%
  • Python 15.9%
  • JavaScript 1.1%