Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.53 KB

README.md

File metadata and controls

46 lines (29 loc) · 1.53 KB

denoBin

denoBin is an attempt to try cross-platform scripting and filesystem manipulation using Deno's API and Standard Library

The stdlib provides most everything you would expect in a stdlib.

How I Initialized Deno Proj

To initialize this project as a Deno project, I used a few commands:

  1. deno init
  2. Add ./README.md
  3. Initialized completion for the deno binary by calling deno completions <shell_name>. _I use pwsh so my command was deno completions powershell | Out-File "./_deno.ps1" -encoding utf8
  4. gitignore deno >> .gitignore This command fetches a deno gitignore template and dumps it in the ./.gitignore file. Installable thru scoop install gitignore

GOALS

  • Get more familiar with Deno stdlib.
  • Incorporate the Cliffy module for CLI creation

Interesting Deno Modules

Check deno.land/x for a rundown of the most popular Deno Third-Party Modules

  • Markdown This module relies on an outdated version of Deno

  • Oak

  • Cliffy Also check out its GitHub page here

  • rimbu Immutable collections for Typescript.

Other Useful Links

See IDEAS for library ideas.

Also check out the wiki