Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 1.48 KB

File metadata and controls

66 lines (43 loc) · 1.48 KB

Take-Home Test (TypeScript)

This is a template for a take-home test. See the Instructions for details on the activity.

Set Up Your Repository

  1. On the top right corner of this page, click the "Use this template" button
  2. Select "Create Your Own Repository" from the dropdown
  3. Give the repository a name under your Github account, and click "Create a new repository"
  4. Follow the below instructions to complete the exercise

Submit Your Work

Once you’ve completed the task, please add the tracksuit-technical-test Github user as a collaborator, and share the repo link with the talent manager.

Setup

Install Deno 2 using your preferred method--typically this would be your system's package manager. See Deno's installation instructions to find the command that's right for you.

Tip

Nix users can use nix develop to install tools declared in this repo's Flake .

This repo was developed against Deno 2.1.2.

Common tasks

Most of the commands you'll need are provided by the Deno toolchain. You can run tasks either from the repo root or within each package

Running client and server

deno task dev

Typechecking

deno check .

Linting

deno lint

Formatting

deno fmt