---
title: "deno check"
oldUrl: /runtime/manual/tools/check/
command: check
openGraphLayout: "/open_graph/cli-commands.jsx"
openGraphTitle: "deno check"
description: "Download and type-check code without execution"
---

## Example

Type-check without execution.

```ts title="example.ts"
const x: string = 1 + 1n;
```

```bash
deno check example.ts
```
