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.
- Host: GitHub
- URL: https://github.com/mrinjamul/deno-module-starter
- Owner: mrinjamul
- License: mit
- Created: 2022-01-17T18:14:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-17T18:49:05.000Z (over 4 years ago)
- Last Synced: 2025-03-17T02:24:23.665Z (about 1 year ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)