You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also this would enable adding depencies kinda the nodejs way while still adding them globally and also generate a lock file for added security
For example, runnning:
This is just my suggestion, maybe the configuration could be in xml the point is that a good module system would be very helpful and also help offline development
Maybe running
deno fetch
will install all needed dependencies
The text was updated successfully, but these errors were encountered:
IMHO "init" programs are anti-patterns. It's a poor way to abstract complexity. The boilerplate is too complex, so just have a program generate it for you. That might be an ok solution when you have no control over the system you're "initializing" but in Deno we do. Instead of generating boilerplate, I want to eliminate the boilerplate. Therefore there will not be a "deno init".
Having a configuration file and polished module system, like having a deno init command that creates a configuration file
For example, running
would generate the following config.json
This would enable to configure the workspace maybe with some flags option
Also this would enable adding depencies kinda the nodejs way while still adding them globally and also generate a lock file for added security
For example, runnning:
would result in
and generate a deno.lock file like so
This is just my suggestion, maybe the configuration could be in xml the point is that a good module system would be very helpful and also help offline development
Maybe running
will install all needed dependencies
The text was updated successfully, but these errors were encountered: