Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ayakovlenko/typescriptlings

Small exercises to get you used to reading and writing TypeScript code!
https://github.com/ayakovlenko/typescriptlings

beginner-friendly deno rustlings typescript typescriptlings

Last synced: 11 days ago
JSON representation

Small exercises to get you used to reading and writing TypeScript code!

Awesome Lists containing this project

README

        

# typescriptlings

![](https://github.com/ayakovlenko/typescriptlings/actions/workflows/test.yml/badge.svg)
[![](https://coveralls.io/repos/github/ayakovlenko/typescriptlings/badge.svg?branch=main)](https://coveralls.io/github/ayakovlenko/typescriptlings?branch=main)

This project contains small exercises to get you used to reading and writing
TypeScript code. This includes reading and responding to compiler messages.

## getting started

Heavily inspired by [rustlings](https://github.com/rust-lang/rustlings).

### prerequisites

The project uses Deno as a TypeScript runtime, so you need to
[install](https://deno.land/#installation) it first.

### ready to run 🚀

```
deno task start
```

## development

Run tests:

```
deno task test
```

Before submitting a PR:

```
deno task pr-fix
```