Skip to content
/ deno-module Public template

🦕 Template repository to help bootstrap a new Deno module

License

Notifications You must be signed in to change notification settings

NuroDev/deno-module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



🦕
deno-module




Template project to build a new Deno module

License Build Docs



🚀 Install

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/"
  }
}

🦄 Usage

import { ... } from "deno-module/mod.ts";

// ...

☁️ Deploying

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.

Releases

No releases published