/try-deno

Playground for learning Deno!

Primary LanguageTypeScript

try-deno

Playground for learning Deno!

Setup development environment

  1. If you using a Mac and Homebrew
    brew install deno
  2. That's it! For additional installation options see the installation docs.

How to run, test, lint, and format your code

# Run the application from the root directory
deno run src/app.ts

# Run tests
deno test

# Check test coverage
deno test --coverage --unstable

# Run linter
deno lint --unstable

# Run formatter
deno fmt --check

# Run formatter and automatically fix
deno fmt