Posts tagged with "deno"

  • Introduction to Deno

    I’ve very much enjoyed all of my experiences with Deno and I’ve wanted to share that experience along with frequent questions I’ve been asked. Related: How things are (were?) Imagine if you will a TypeScript node project similar to this project skeleton I took a few hours to whip together. This skeleton has: To produce that you

  • Deno Live Coding a High Performance Web Server

    I’ve been thoroughly enjoying my time writing Deno, and I’d like to open up my development publically to help keep me accountable as well as to provide a view in to what Deno development looks like. I’ll be developing a web worker backed, radix tree based, routing + web application server with middleware support, live

  • Debugging Deno Projects in VSCode

    Debugging Deno applications inside VS Code is actually pretty straightforward with the right launch config. Use the below .vscode/launch.json config to debug your entire deno application, debug all of your deno tests, run a single test file, or just the specific test case that you have currently selected.

  • Deno Command Cheatsheet

    Formatting/Linting deno fmt Testing Run all tests deno test Run specific test file deno test ./src/main_test.ts Run specific test case in a file deno test ./src/main_test.ts –filter “calling logging middleware” Dependencies Producing a lockfile deno cache –lock=lock.json –lock-write ./src/deps.ts Download project dependencies from lockfile deno cache -r –lock=lock.json ./src/deps.ts Refetch dependencies from the network deno