Sign inSign up

iolodev/deno

By iolodev

Updated over 6 years ago

my first repo for deno

Image
1

1.0K

iolodev/deno repository overview

Fresh deno install on debian:10.3-slim

Version

  • deno : 1.0.0
  • git : 2.20.1 -CURL : 7.64.0

Documentation :

Change Log

https://github.com/denoland/deno/blob/master/Releases.md

Example - src : https://deno.land/

Try running a simple program:

https://deno.land/std/examples/welcome.ts

Or a more complex one:

import { serve } from "https://deno.land/[email protected]/http/server.ts";
const s = serve({ port: 8000 });
console.log("http://localhost:8000/");
for await (const req of s) {
  req.respond({ body: "Hello World\n" });
}

more example : https://deno.land/std/examples

Example docker
  • check version : `docker run --rm iolodev/deno:latest deno -V
  • run welcome deno : docker run --rm iolodev/deno:latest deno run https://deno.land/std/examples/welcome.ts

Tag summary

Content type

Image

Digest

Size

148.7 MB

Last updated

over 6 years ago

docker pull iolodev/deno