Skip to content

Commit f2485ee

Browse files
authored
Add Links to Packages to Readme (#54)
* Update readme * remove lang from code fence
1 parent 6c21012 commit f2485ee

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ This library provides constructs for Rust Lambda functions built with Cargo Lamb
55
To use this module you will either need to have [Cargo Lambda installed](https://www.cargo-lambda.info/guide/installation.html) (`0.12.0` or later), or `Docker` installed.
66
See [Local Bundling](#local-bundling)/[Docker Bundling](#docker-bundling) for more information.
77

8+
## Installation
9+
10+
### JavaScript / TypeScript
11+
12+
You can add [the npm package](https://npmjs.com/package/cargo-lambda-cdk) to your program as follows,
13+
14+
```bash
15+
npm i cargo-lambda-cdk
16+
```
17+
18+
Or using any other compatible package manager
19+
20+
### Go
21+
22+
Add the following to your imports,
23+
24+
```plain
25+
github.com/cargo-lambda/cargo-lambda-cdk/cargolambdacdk
26+
```
27+
28+
### Python
29+
30+
You can add [the Python package](https://pypi.org/project/cargo-lambda-cdk) using `pip`, or any other package manager compatible with PyPI,
31+
32+
```bash
33+
pip install cargo-lambda-cdk
34+
```
35+
836
## Rust Function
937

1038
Define a `RustFunction`:

0 commit comments

Comments
 (0)