# Introduction
Learning how to [create npm packages](https://blog.npmjs.org/post/118810260230/building-a-simple-command-line-tool-with-npm.html).

# 💿 Installation
```bash
npm install weedz
```

# 📖 Usage
```bash
weed blaze # prints "420 blaze it"
```

```bash
weed yeet # prints "420 yeet it"
```

```bash
weed test # prints "all tests are blazin'"
```
## How to update npm version
1. run `npm version <update_type>
2. run `npm publish
see [here](https://docs.npmjs.com/updating-your-published-package-version-number)

## Useful References for future use

- https://www.npmjs.com/package/yargs
- https://github.com/chalk/chalk
- https://www.npmjs.com/package/prompts
