You don't need a build step
deno.com
You don't need a build step
1–10 of 224 posts
Re: You don't need a build step
#2My understanding is that the client side JS is a result of backend compilation. How does this work if the backend is dynamically generating those JS files? `getPosts()` can return a different JSX based on what `getPosts()` returns. No?
Re: You don't need a build step
#3Re: You don't need a build step
#4So please, if you own a framework like this, make sure a script tag with a CDN link is easily copyable.
Re: You don't need a build step
#5This article is strictly about JavaScript. What about all the server-side rendering frameworks?
Huge assumption that everything is built one way.
Re: You don't need a build step
#6- How do you measure bundle size and make sure it remains small? (e.g. make sure that a PR doesn't accidentally import a massive dependency)
- How do you measure bundling speed/performance, does it add significant time to the first request? To subsequent requests? Is it linear, exponential, etc. with the number of LOC? Again like in the previous point, how do we make sure there are no regressions here?
- How does this work, well, with absolutely anything else? If I want my front-end in React? Vue? etc.
Re: You don't need a build step
#7Am I missing something? This might not be terrible if it becomes the standard to host your own mirror internally.
Re: You don't need a build step
#8My understanding of this is that this is trading a build step for just in time (JIT) compilation, which seems, ok? But it seems to me that you've just moved the problem around and I'm sure there are additional trade-offs (as with anything).
In addition to that, often there are other concerns addressed at build time such as linting.
Re: You don't need a build step
#9The decoupling of URLs that host your dependencies and the URLs that host your application feels like an important uptime measure currently. If the URLs that host your dependencies go down in an NPM world, you can't build and deploy new code but your app is still up. It seems, if the URLs that host your dependencies go down in a Deno world, your app goes down if those dependencies have not yet been cached (even on th…
Re: You don't need a build step
#10So basically Deno has its own bundler that lets you not have a local build step and it gets bundled dynamically per-route as requested by users, right? This is very different from industry standards and possibly has many new concerns from devs, none of which are addressed in the article since it's treating the system as a perfect solution, which makes sense since it's a marketing page ("content marketing"). If it was…
So the bundle size is zero.