#!/bin/sh mkdir -p deno echo ' import { createApp, serveStatic } from "https://deno.land/x/servest@v1.3.1/mod.ts"; const app = createApp(); app.use(serveStatic("./destination")); app.listen({ port: 8000 }); ' > deno/index.js mkdir -p destination echo '
Your device has initialized successfully...