https://github.com/anishkny/deno-hello
The simplest possible Deno module
https://github.com/anishkny/deno-hello
deno deno-module denoland hello-world
Last synced: 1 day ago
JSON representation
The simplest possible Deno module
- Host: GitHub
- URL: https://github.com/anishkny/deno-hello
- Owner: anishkny
- Created: 2022-08-02T07:25:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-04T14:38:22.000Z (almost 4 years ago)
- Last Synced: 2026-06-20T03:09:01.054Z (15 days ago)
- Topics: deno, deno-module, denoland, hello-world
- Language: Dockerfile
- Homepage: https://deno.land/x/hello
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello
Prints out `hello, world!`.
## Usage
```ts
import hello from "https://deno.land/x/hello/mod.ts";
hello();
// Output: hello, world!
```