Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 869 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 869 Bytes

Deno Boilerplate

This is a very basic Deno Boilerplate.

It does not much. The only goal is to not have to setup and created a basic setup.

Feel free to open pull requests!

basic usage

This boilerplate uses make to run the Deno commands. It is usually already installed on your Unix OS.

You can use the following commands:

  • make run: executes the index.ts
  • make test: runs the tests
  • make format: formats all your files
  • make debug: runs the debugger starting in the index.ts
  • make bundle: bundles your project into a single file in build/index

Simple logger pre-configured

In src/log.ts you can find a simple logger that is extendable.

ToDo

  • Overall extend the project
  • Think about a better developer experience
  • Think about a better folder structure
  • Create a companion CLI tool
  • Probably more...