To get started you will first need to install Deno. View their website on how to install Deno
You can either import the module directly via an import
or add it to your import map, preferraly inside of your deno.json
(Recommended):
{
"imports": {
"deno-module/": "https://deno.land/x/deno-module/"
}
}
import { ... } from "deno-module/mod.ts";
// ...
To set up a automatic publishing of your Deno module, you'll need to set up a GitHub webhook.
https://api.deno.land/webhook/gh/<moduleName>
I recommend reading through this blog post that outlines each step needed to do this.