An open API service indexing awesome lists of open source software.

https://github.com/mrinjamul/deno-module-starter

Deno module starter repository.
https://github.com/mrinjamul/deno-module-starter

Last synced: 12 months ago
JSON representation

Deno module starter repository.

Awesome Lists containing this project

README

          

# 🦕 deno-module-starter

[Deno](https://deno.land) module starter repository.

## Usage

```typescript
import { getHelloWorld } from "https://raw.githubusercontent.com/mrinjamul/deno-module-starter/{VERSION}/mod.ts";

const helloWorld = getHelloWorld();
console.log(helloWorld); // Prints "Hello World" in bold
```

## Test

```bash
# unit tests
deno ./test.ts
```

## Format code

```bash
deno fmt **/*.ts
```

## Resources

- [Deno Website](https://deno.land)
- [Deno Style Guide](https://deno.land/std/style_guide.md)