Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 868 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 868 Bytes

kata-chooser

Choose a kata from filters

Architecture

This website uses vanilla JS and modules. It does not use any build system (such as npm, yarn or deno).

It need nothing to install and you can even develop from your browser directly !

But Why is there some deno stuff ? Deno is only used for tests and to run a very small server locally (do not import deno stuff in production modules).

Run locally

If you want to run the server locally, you will need to install deno.

deno run --allow-net --allow-read  server.ts

Use of deno for tests

If you want to run tests, you will need to install deno.

Run tests :

deno test
# continuously
deno test --watch