aboutsummaryrefslogtreecommitdiff
path: root/dev.ts
diff options
context:
space:
mode:
authorIndrajith K L2023-05-13 11:17:27 +0530
committerIndrajith K L2023-05-13 11:17:27 +0530
commitfc0064f6a0ed4c66a726a93786f7e1bb39bcfe80 (patch)
treec5b65cd636abe4f367cc0c36ca20ca21a8ad080a /dev.ts
downloadpackage-analyzer-fc0064f6a0ed4c66a726a93786f7e1bb39bcfe80.tar.gz
package-analyzer-fc0064f6a0ed4c66a726a93786f7e1bb39bcfe80.tar.bz2
package-analyzer-fc0064f6a0ed4c66a726a93786f7e1bb39bcfe80.zip
Initial Commit
* Implements Basic Routing and API * Implements Package.json file select and json parse * Displays Project Name, Version & Desc from the package.json * Fetch all package details using npm registry API and map it based on package name
Diffstat (limited to 'dev.ts')
-rw-r--r--dev.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/dev.ts b/dev.ts
new file mode 100644
index 0000000..2d85d6c
--- /dev/null
+++ b/dev.ts
@@ -0,0 +1,5 @@
+#!/usr/bin/env -S deno run -A --watch=static/,routes/
+
+import dev from "$fresh/dev.ts";
+
+await dev(import.meta.url, "./main.ts");