DEV Community

Discussion on: Great fun with Deno - My First Deno Framework

 
oknoorap profile image
Ribhararnus Pracutian

Thats why Deno is the big rescue here 😁, we don't need node_modules anymore.

Thread Thread
 
michaelcurrin profile image
Michael Currin

There's an open issue for this.

github.com/denoland/deno/issues/6900

Recommended alternative by a commenter:

$ deno bundle https://deno.land/std@0.79.0/http/file_server.ts | esbuild --minify > file_server.min.js
$ deno run --allow-net --allow-read file_server.min.js
Enter fullscreen mode Exit fullscreen mode