DEV Community

Discussion on: Forget NodeJS! Build native TypeScript applications with Deno 🦖

Collapse
 
jankapunkt profile image
Jan Küster

I have a question on the url based module loading. If I would require to build a pure offline application how would I load the modules? Are they loaded at dev time and then bundled into a large js file? Would I have to store a local copy, which is then bundled? Or something totally different?

Collapse
 
deepu105 profile image
Deepu K Sasidharan

Deno team recommends creative a lib.ts file which imports all needed libs so that you can bundle it with the app and use it offline as well. See this deno.land/std/manual.md#linking-to...