Collaboration opportunity with c4spar/deno-dzx
See original GitHub issueFirst, thank you for your work on Deno! I really enjoy the quality of what you and the team build 😄
I would normally have made something like this a Discussion
topic instead of an issue, but I wonder if you’ve had thoughts on collaborating on https://github.com/c4spar/deno-dzx to add your ideas to that project? It is the most established Deno version of zx
that I’ve seen (and contributed to) and I think it might be valuable to cross-pollinate ideas in that more established project!
Just wanted to put it on your radar in case you haven’t already seen it - cheers!
Issue Analytics
- State:
- Created a year ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Opportunity Collaboration: Home
Our 4-night, 3 full-day collaborative summits are all-inclusive and uniquely designed to help you forge alliances and advance your organization's social ...
Read more >Research Collaboration Opportunity in Europe for NSF ...
This international research opportunity is mutually beneficial to the U.S. participants and their hosts through cooperative activities during ...
Read more >Collaborate on Deals by Using Opportunity Teams
When you collaborate on deals with colleagues, use opportunity teams to track progress and improve success. Roles on a team can include an...
Read more >Opportunity Collaboration - LinkedIn
The Opportunity Collaboration is a global network of leaders dedicated to building sustainable solutions to poverty and injustice. We convene virtually and ...
Read more >Initiating Collaboration
A "Start Collaboration" button is visible on any ACRM Opportunity's Details mask, as long as that Opportunity is not yet completed and Collaboration...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m planning to separate out the shell part into a separate module once stabilized. I just want to keep it in here while I develop so I can have faster iteration times. For now, it should be fine to depend on https://deno.land/x/dax@0.4.0/src/shell.ts – as the API is unlikely to change too much. See the
parseArgs
andspawn
exports. Note though that this doesn’t work exactly the same way as Deno’s task shell because there’s no way to create IPC pipes in Deno (ex. can’t create an anonymous pipe on Windows).Overall, I wanted different defaults than both dzx and zx—no CLI, no globals or global config, forced cross platform shell, and a slightly different API so that’s why I started from scratch on this as it’s a pretty small library.
Hey, I’ve seen it, but I don’t really like how zx and dzx use a global command, have a cli, and use the system shell (both of those tools don’t work well on Windows) so this is a complete rewrite.