Перейти к файлу
Timothee Guerin 868891845f
Analyze change ts (#3415)
Convert the analyze-change.ps1 to typescript which allows to reuse a
common config for which area belong to who as well as some other
helpers.

The testing also is then all built-in the same system
2024-07-26 18:38:09 +00:00
.chronus Update docs for `@server` (#3960) 2024-07-24 22:37:20 +00:00
.devcontainer Add dev container configuration for repo (#3440) 2024-05-24 00:20:36 +00:00
.github Add java emitter label (#3963) 2024-07-25 15:40:29 +00:00
.vscode include cjs files so that we can add breakpoint of vscode extension during debug (#3511) 2024-06-07 13:49:57 +00:00
blog/2024-04-25-introducing Fix broken blog link (#3252) 2024-04-29 20:38:51 +00:00
docker Add dev container configuration for repo (#3440) 2024-05-24 00:20:36 +00:00
docs Add deprecation notice in ref docs (#4025) 2024-07-26 17:13:45 +00:00
e2e Add publish pipeline for dotnet emitter (#3116) 2024-04-08 17:33:06 -07:00
eng Analyze change ts (#3415) 2024-07-26 18:38:09 +00:00
grammars Classify single using (#3767) 2024-07-08 17:27:00 +00:00
icons/raw Website & Docs Cleanup (#3002) 2024-03-11 18:56:35 -07:00
packages Add deprecation notice in ref docs (#4025) 2024-07-26 17:13:45 +00:00
.dockerignore Feature: docker image (#57) 2021-11-12 11:17:46 -08:00
.editorconfig Format CSharp files: add `dotnet format` to `rush format` (#490) 2022-04-29 09:46:23 -07:00
.gitattributes Add release notes for 0.56.0 (#3294) 2024-05-07 21:02:14 +00:00
.gitignore Delete ApiTypes (#3650) 2024-06-24 23:10:17 +00:00
.npmrc Add dev container configuration for repo (#3440) 2024-05-24 00:20:36 +00:00
.prettierignore Make the sync label logic reusable for typespec-azure repo (#3425) 2024-05-23 17:01:14 +00:00
.prettierrc.json Get rid of rush and move to pnpm (#2775) 2024-01-24 13:37:34 -08:00
CODE_OF_CONDUCT.md Add LICENSE, CODE_OF_CONDUCT.md, and SECURITY.md 2021-10-19 14:53:13 -05:00
CONTRIBUTING.md Add java emitter label (#3963) 2024-07-25 15:40:29 +00:00
LICENSE Add LICENSE, CODE_OF_CONDUCT.md, and SECURITY.md 2021-10-19 14:53:13 -05:00
README.md Simplify Readme (#2864) 2024-01-30 16:18:37 -08:00
SECURITY.md Add LICENSE, CODE_OF_CONDUCT.md, and SECURITY.md 2021-10-19 14:53:13 -05:00
cspell.yaml Cadl ranch test framework (#3964) 2024-07-25 21:27:15 +00:00
eslint.config.js Enable react hooks linting and fix issues (#3761) 2024-07-08 17:10:06 +00:00
package.json Analyze change ts (#3415) 2024-07-26 18:38:09 +00:00
pnpm-lock.yaml Analyze change ts (#3415) 2024-07-26 18:38:09 +00:00
pnpm-workspace.yaml Initial move of csharp client emitter (#3098) 2024-04-04 16:26:05 -07:00
troubleshooting.md 1/3 TypeSpec: Find/Replace Content 2023-02-16 13:07:22 -08:00
tsconfig.base.json Add numeric data structure (#3115) 2024-04-09 16:38:16 +00:00
tsconfig.eng.json Analyze change ts (#3415) 2024-07-26 18:38:09 +00:00
tsconfig.json Add storybook for playground library (#3412) 2024-05-24 02:37:11 +00:00
tsconfig.ws.json [http-server-javascript] Merge JavaScript Server Generator to Main (#3231) 2024-07-10 21:44:45 +00:00
vitest.config.ts Fix vitest not reloading JS files (#3395) 2024-05-17 21:53:01 +00:00
vitest.workspace.ts Analyze change ts (#3415) 2024-07-26 18:38:09 +00:00

README.md

TypeSpec

Official Docs | Try TypeSpec Online | Getting Started | Language Overview

TypeSpec is a language for defining cloud service APIs and shapes. TypeSpec is a highly extensible language with primitives that can describe API shapes common among REST, OpenAPI, gRPC, and other protocols.

TypeSpec is excellent for generating many different API description formats, client and service code, documentation, and many other assets. All this while keeping your TypeSpec definition as a single source of truth.

Using TypeSpec, you can create reusable patterns for all aspects of an API and package those reusable patterns into libraries. These patterns establish "guardrails" for API designers and makes it easier to follow best practices than to deviate from them. TypeSpec also has a rich linter framework with the ability to flag anti-patterns as well as an emitter framework that lets you control of the output to ensure it follows the patterns you want.

Installation

npm install -g @typespec/compiler

Tools

The TypeSpec VS Code extension can be installed from the VS Code marketplace or directly on the command line:

tsp code install

The TypeSpec VS Extension can be installed from the VS Marketplace or directly on the command line:

tsp vs install

Usage

TypeSpec to OpenAPI 3.0 Example

This example uses the @typespec/http, @typespec/rest, and @typespec/openapi3 libraries to define a basic REST service and generate an OpenAPI 3.0 document from it.

Run the following command and select "Generic REST API":

tsp init

Hit enter a few times to confirm the defaults.

Copy the contents below into your main.tsp:

import "@typespec/http";
import "@typespec/rest";
import "@typespec/openapi3";

using TypeSpec.Http;
using TypeSpec.Rest;

/** This is a pet store service. */
@service({
  title: "Pet Store Service",
})
@server("https://example.com", "The service endpoint")
namespace PetStore;

@route("/pets")
interface Pets {
  list(): Pet[];
}

model Pet {
  @minLength(100)
  name: string;

  @minValue(0)
  @maxValue(100)
  age: int32;

  kind: "dog" | "cat" | "fish";
}

Install the dependencies of main.tsp:

tsp install

Compile it to OpenAPI 3.0:

tsp compile main.tsp --emit @typespec/openapi3

You can find the emitted OpenAPI output in ./tsp-output/openapi.json.

Advanced Scenarios

Installing nightly version

On every commit to the main branch, packages with changes are automatically published to npm with the @next tag. The packages section shows which version corresponds to the next tag for each package.

To use a nightly version of the packages, go over each one of the packages in the package.json file and update it to either the latest published @next version or @latest, whichever is the newest. You can also use the tag latest or next instead of an explicit version.

After updating the package.json file you can run npm update --force. Force is required as there might be some incompatible version requirement.

Example

// Stable setup
"dependencies": {
  "@typespec/compiler": "~0.30.0",
  "@typespec/http": "~0.14.0",
  "@typespec/rest": "~0.14.0",
  "@typespec/openapi": "~0.9.0",
}

// Consume next version
// In this example: compiler and openapi have changes but rest library has none
"dependencies": {
  "@typespec/compiler": "~0.31.0-dev.5",
  "@typespec/http": "~0.14.0",
  "@typespec/rest": "~0.14.0", // No changes to @typespec/rest library so need to stay the latest.
  "@typespec/openapi": "~0.10.0-dev.2",
}

Packages

Name Changelog Latest Next
Core functionality
@typespec/compiler Changelog
TypeSpec Libraries
@typespec/http Changelog
@typespec/rest Changelog
@typespec/openapi Changelog
@typespec/openapi3 Changelog
@typespec/versioning Changelog
TypeSpec Tools
@typespec/prettier-plugin-typespec Changelog
typespec-vs Changelog
typespec-vscode Changelog
tmlanguage-generator Changelog

@next version of the package are the latest versions available on the main branch.