0.8.0 • Published 2 years ago

deveff-toolkit v0.8.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Developer Effectiveness Toolkit

WARNING: This project is in its early stage. Use at your own risk.

A cli tool for various tasks to improve developer effectiveness. It includes the following areas:

  • text processing
  • timestamp processing

Install a new command

Add and entry in package.json

...
"bin": {
    ...
    "create-project": "bin/create-project",
},
...

Then run

npm link

Now you can run it

╰─ create-project
{
    skipPrompts: false,
    git: false,
    template: undefined,
    runInstall: false
}

╰─ create-project --yes time this
{ skipPrompts: true, git: false, template: 'time', runInstall: false }

╰─ echo "abc" | create-project
{
  skipPrompts: false,
  git: false,
  template: undefined,
  runInstall: false
}
abc

Reference