Replies: 3 comments 7 replies
-
For now I see maybe one thing that makes Maybe than |
Beta Was this translation helpful? Give feedback.
-
Problems with
Advantages of JSR over
We've written a bunch of blog posts on this topic which might interest you: |
Beta Was this translation helpful? Give feedback.
-
@marvinhagemeister My opinion, it should not be done even thought I would use 'O' - Open-Close principle, leave deno bundle main.ts # Default deno bundler
deno bundle --set-bundler esbuild # Deno start using esbuild bundler and start searching esbuild customization scripts
deno bundle main.ts # esbuild bundler
deno bundle --set-bundler webpack # Deno start using webpack bundler and start searching webpack customization scripts
deno bundle main.ts # webpack bundler |
Beta Was this translation helpful? Give feedback.
-
I understand that it is superset of
npm
, but on previous versions ofDeno
it was also possible to manages versions of package using just urls and version like it was done in deno.land/xFor example:
https://deno.land/x/[email protected]
https://jsr.io/@astral/astral and install using
deno install @astral/[email protected]
For me it looks the same !! It is path backward ?!
Also moving
Deno
std library completely tojsr
- looks like for me again path backward, why not publish in both places deno.land/x (for those who love to use url based libraries) andjsr
(for those who came fromnpm
ecosystem)Maybe I do not understand something, please explain then ...
Beta Was this translation helpful? Give feedback.
All reactions