cadl/README.md

151 строка
5.0 KiB
Markdown
Исходник Обычный вид История

2021-08-25 22:47:06 +03:00
# Cadl
Cadl is a language for describing cloud service APIs and generating other API
description languages, client and service code, documentation, and other assets.
Cadl provides highly extensible core language primitives that can describe API
shapes common among REST, GraphQL, gRPC, and other protocols.
You can try a work-in-progress build of the compiler by following the steps in
the Getting Started section below. Please feel free to [file
issues](https://github.com/Azure/adl/issues) for any issues you encounter while
using the preview.
## Packages
| Name | Changelog | Latest |
| ----------------------------------- | ---------------------------- | ------------------------------------------------------ |
| Core functionality |
| [@cadl-lang/compiler][cadl_src] | [Changelog][cadl_chg] | ![](https://img.shields.io/npm/v/@cadl-lang/compiler) |
| Cadl Libraries |
| [@cadl-lang/rest][rest_src] | [Changelog][rest_chg] | ![](https://img.shields.io/npm/v/@cadl-lang/rest) |
| [@cadl-lang/openapi3][openapi3_src] | [Changelog][openapi3_chg] | ![](https://img.shields.io/npm/v/@cadl-lang/openapi3) |
| Cadl Tools |
| [cadl-vs][cadl-vs_src] | [Changelog][cadl-vs_chg] | ![](https://img.shields.io/npm/v/@azure-tools/cadl-vs) |
| [cadl-vscode][cadl-vscode_src] | [Changelog][cadl-vscode_chg] | ![](https://img.shields.io/npm/v/cadl-vscode) |
2021-08-25 22:47:06 +03:00
[cadl_src]: packages/compiler
[cadl_chg]: packages/compiler/CHANGELOG.md
[rest_src]: packages/rest
[rest_chg]: packages/rest/CHANGELOG.md
[openapi3_src]: packages/openapi3
[openapi3_chg]: packages/openapi3/CHANGELOG.md
[cadl-vs_src]: packages/cadl-vs
[cadl-vs_chg]: packages/cadl-vs/CHANGELOG.md
[cadl-vscode_src]: packages/cadl-vscode
[cadl-vscode_chg]: packages/cadl-vscode/CHANGELOG.md
## Getting Started
2021-11-12 22:17:46 +03:00
### Using Docker
[See docker documentation](./docs/docker.md)
### Using Node & Npm
2021-08-25 22:47:06 +03:00
1. Install [Node.js 14 LTS](https://nodejs.org/en/download/) and ensure you are able to run the `npm` command in a command prompt:
```
npm --version
```
2. Create a folder for your new Cadl project
3. In a command prompt, run the following commands:
```
cd path\to\cadl\project
npm init -y
npm install -g @cadl-lang/compiler
npm install @cadl-lang/rest @cadl-lang/openapi3
```
This will create a `package.json` file for your Cadl project and add the necessary Cadl dependencies to it.
4. Install the Cadl extension for your editor of choice:
- [Instructions for Visual Studio](#installing-visual-studio-extension)
- [Instructions for Visual Studio Code](#installing-vs-code-extension)
5. Open the folder in your editor and create a new file with a `.cadl` extension
6. [Follow our tutorial](docs/tutorial.md) to get started writing Cadl!
7. Once you're ready to compile your Cadl to Swagger, save the file and type this at the command prompt in your project folder:
```
npx cadl compile .
```
This will compile the Cadl files in the project folder into one output file: `.\cadl-output\openapi.json`.
## Usage
See full usage documentation by typing:
```
cadl --help
```
### Compiling Cadl source to an OpenAPI 3.0 specification
2021-08-25 22:47:06 +03:00
Here is a very small Cadl example that uses the `@cadl-lang/openapi3` library to generate OpenAPI 3.0 from Cadl.
2021-08-25 22:47:06 +03:00
#### sample.cadl
```
import "@cadl-lang/rest";
import "@cadl-lang/openapi3";
@resource("/example")
namespace Example {
@get("/message")
op getMessage(): { statusCode: 200; @body message: string; };
}
```
2021-08-25 22:47:06 +03:00
You can compile it to OpenAPI 3.0 by using the following command:
2021-08-25 22:47:06 +03:00
```
cadl compile sample.cadl
2021-08-25 22:47:06 +03:00
```
Once it compiles, you can find the emitted OpenAPI document in `./cadl-output/openapi.json.
You can also pass in a directory instead of a file to `cadl compile`. That's
equivalent to passing `main.cadl` in that directory.
2021-08-25 22:47:06 +03:00
### Formatting Cadl files
Cadl provides an auto-formatter to keep your specs clean and organized.
```bash
cadl format <patterns...>
# Format all the files in the current directory with the cadl extension.
cadl format **/*.cadl
```
### Installing VS Code Extension
```
cadl code install
```
This will download and install the latest VS Code extension. Use `cadl code uninstall` to remove it. Pass `--insiders` if you use VS Code Insiders edition.
If `cadl-server` cannot be found on PATH by VS Code in your setup, you can
configure its location in VS Code settings. Search for "Cadl" in File ->
Preferences -> Settings, and adjust `cadl.cadl-server.path` accordingly. You may
need to restart VS Code after changing this. This should be the path to the `@cadl-lang/compiler` package. (e.g. `./node_modules/@cadl-lang/compiler`)
2021-08-25 22:47:06 +03:00
You can also configure a project to use a local npm install of
2021-10-27 20:00:00 +03:00
`@cadl-lang/compiler`. See [local-cadl sample](packages/samples/local-cadl).
2021-08-25 22:47:06 +03:00
### Installing Visual Studio Extension
```
cadl vs install
```
This will download and install the latest Visual Studio extension. Use `cadl vs uninstall` to remove it.