Best of DenoMarch 2023

  1. 1
    Article
    Avatar of denoDeno·3y

    You Don't Need a Build Step

    Node's server-side JavaScript isn't compatible with browser JavaScript, because each implementation satisfies two entirely different systems. JavaScript was created for browsers where scripts/resources are imported asynchronously via URLs. Node is modularized, so code from different Node modules need to be bundled and minified to reduce code being shipped to the client.

  2. 2
    Article
    Avatar of denoDeno·3y

    Build a REST API with Express, TypeScript, and Deno

    With Deno, you don’t need to configure TypeScript, so you can get up and running with minimal dependencies. We have to pull in all kinds of code when we’re developing APIs, from geo information, AI, ad servers and whatever other inputs have to come together to produce what’s required.