/lazy-cli

Life's too short to remember boilerplate code

Primary LanguageJavaScript

Lazy CLI

Because I have better things to do than remembering how to set up eslint or prettier for the 1000th time.

Using global snippets

First install the CLI globally.

npm install -g @lucasdinonolte/lazy-cli

Then you're ready to access the built-in snippets from anywhere by Using

lazy

Project specific usage

You can also point lazy to a custom snippets folder inside of a project.

Start by installing lazy into your project as a dev dependency.

npm install --save-dev @lucasdinonolte/lazy-cli

Next add lazy to your project’s scripts.

...
  "scaffold": "lazy ./path/to/snippetsFoler",
...