aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun3
-rw-r--r--src/main.ts7
2 files changed, 10 insertions, 0 deletions
diff --git a/run b/run
new file mode 100755
index 0000000..66084ce
--- /dev/null
+++ b/run
@@ -0,0 +1,3 @@
+#!/usr/bin/env sh
+
+deno run --allow-net src/main.ts
diff --git a/src/main.ts b/src/main.ts
new file mode 100644
index 0000000..e397e85
--- /dev/null
+++ b/src/main.ts
@@ -0,0 +1,7 @@
+import { Application } from "https://deno.land/x/abc@v1/mod.ts";
+
+const app = new Application();
+
+app.get("/", (c) => {
+ return "Hello, world!";
+}).start({ port: 8080 });