From 0f7ee1e65ce98ba6d9921216f5aec038485e21a8 Mon Sep 17 00:00:00 2001 From: Jack Rehaag Date: Fri, 27 Mar 2026 11:15:02 +0000 Subject: [PATCH] Fix Markdown link format --- typescript/setup.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/typescript/setup.md b/typescript/setup.md index 087608f..daad4fc 100644 --- a/typescript/setup.md +++ b/typescript/setup.md @@ -1,18 +1,22 @@ # Typescript Setup ## Install Deno + via npm with `npm install -g deno`. or via brew with `brew install deno`. -or find the full list of options (here)[https://docs.deno.com/runtime/getting_started/installation/] +or find the full list of options [here](https://docs.deno.com/runtime/getting_started/installation/). ## Run + Run locally with `deno run dev` -(will also install dependencies) +(will also install dependencies). The server should now be running locally on port 3000, and you can execute requests using the `./rest/chat.rest` file. -(VS Code REST Client Plugin)[https://marketplace.visualstudio.com/items?itemName=humao.rest-client] +[VS Code REST Client Plugin](https://marketplace.visualstudio.com/items?itemName=humao.rest-client). ## IDE Setup (optional) + Your IDE may understand Deno better by adding a corresponding plugin: -- VS Code: https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno -- Jetbrains: https://plugins.jetbrains.com/plugin/14382-deno \ No newline at end of file + +- [VS Code](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno) +- [Jetbrains](https://plugins.jetbrains.com/plugin/14382-deno)