Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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!
- Host: GitHub
- URL: https://github.com/ayakovlenko/typescriptlings
- Owner: ayakovlenko
- Created: 2021-02-18T22:53:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T08:55:28.000Z (4 months ago)
- Last Synced: 2024-10-14T08:24:46.647Z (25 days ago)
- Topics: beginner-friendly, deno, rustlings, typescript, typescriptlings
- Language: TypeScript
- Homepage:
- Size: 33.2 KB
- Stars: 16
- Watchers: 4
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
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
```