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!
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 theindex.ts
make test
: runs the testsmake format
: formats all your filesmake debug
: runs the debugger starting in theindex.ts
make bundle
: bundles your project into a single file inbuild/index
In src/log.ts
you can find a simple logger that is extendable.
- Overall extend the project
- Think about a better developer experience
- Think about a better folder structure
- Create a companion CLI tool
- Probably more...